Makefile 937 B

1234567891011121314151617181920212223242526272829303132
  1. # $Id$
  2. #-
  3. # This file is part of the OpenADK project. OpenADK is copyrighted
  4. # material, please see the LICENCE file in the top-level directory.
  5. include ${TOPDIR}/rules.mk
  6. PKG_NAME:= sipsak
  7. PKG_VERSION:= 0.9.6
  8. PKG_RELEASE:= 1
  9. PKG_MD5SUM:= c4eb8e282902e75f4f040f09ea9d99d5
  10. PKG_DESCR:= a SIP (Session Initiation Protocol) stress and diagnostics utility
  11. PKG_SECTION:= net
  12. PKG_DEPENDS:= libopenssl
  13. PKG_URL:= http://sipsak.org
  14. PKG_SITES:= http://download.berlios.de/sipsak/ \
  15. http://ftp.iptel.org/pub/sipsak/
  16. include ${TOPDIR}/mk/package.mk
  17. $(eval $(call PKG_template,SIPSAK,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  18. CONFIGURE_STYLE:= autoconf gnu
  19. CONFIGURE_ARGS+= --disable-gnutls
  20. BUILD_STYLE:= auto
  21. INSTALL_STYLE:= auto
  22. post-install:
  23. ${INSTALL_DIR} ${IDIR_SIPSAK}/usr/bin
  24. ${INSTALL_BIN} ${WRKINST}/usr/bin/sipsak ${IDIR_SIPSAK}/usr/bin/
  25. include ${TOPDIR}/mk/pkg-bottom.mk