Makefile 936 B

123456789101112131415161718192021222324252627282930
  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 $(TOPDIR)/rules.mk
  4. PKG_NAME:= beecrypt
  5. PKG_VERSION:= 4.2.1
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 8441c014170823f2dff97e33df55af1e
  8. PKG_DESCR:= cryptography toolkit
  9. PKG_SECTION:= crypto
  10. PKG_URL:= http://beecrypt.sourceforge.net/
  11. PKG_SITES:= http://sourceforge.net/projects/beecrypt/files/beecrypt/$(PKG_VERSION)/
  12. PKG_NEED_CXX:= 1
  13. include $(TOPDIR)/mk/package.mk
  14. $(eval $(call PKG_template,BEECRYPT,beecrypt,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  15. TARGET_CFLAGS:= $(filter-out -flto,$(TARGET_CFLAGS))
  16. CONFIGURE_ARGS+= --without-cplusplus \
  17. --without-python \
  18. --without-java
  19. beecrypt-install:
  20. $(INSTALL_DIR) $(IDIR_BEECRYPT)/usr/lib
  21. $(CP) $(WRKINST)/usr/lib/libbeecrypt*.so* \
  22. $(IDIR_BEECRYPT)/usr/lib
  23. include ${TOPDIR}/mk/pkg-bottom.mk