Makefile 1005 B

1234567891011121314151617181920212223242526272829303132
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(ADK_TOPDIR)/rules.mk
  4. PKG_NAME:= beecrypt
  5. PKG_VERSION:= 4.2.1
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= 286f1f56080d1a6b1d024003a5fa2158f4ff82cae0c6829d3c476a4b5898c55d
  8. PKG_DESCR:= cryptography toolkit library
  9. PKG_SECTION:= libs/crypto
  10. PKG_NEEDS:= c++
  11. PKG_URL:= http://beecrypt.sourceforge.net/
  12. PKG_SITES:= http://sourceforge.net/projects/beecrypt/files/beecrypt/$(PKG_VERSION)/
  13. PKG_OPTS:= dev
  14. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
  15. include $(ADK_TOPDIR)/mk/package.mk
  16. $(eval $(call PKG_template,BEECRYPT,beecrypt,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  17. CONFIGURE_ARGS+= --without-cplusplus \
  18. --without-python \
  19. --without-java
  20. beecrypt-install:
  21. $(INSTALL_DIR) $(IDIR_BEECRYPT)/usr/lib
  22. $(CP) $(WRKINST)/usr/lib/libbeecrypt*.so* \
  23. $(IDIR_BEECRYPT)/usr/lib
  24. include ${ADK_TOPDIR}/mk/pkg-bottom.mk