Makefile 856 B

12345678910111213141516171819202122232425262728
  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. include $(TOPDIR)/mk/package.mk
  13. $(eval $(call PKG_template,BEECRYPT,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  14. CONFIGURE_ARGS+= --without-cplusplus \
  15. --without-python \
  16. --without-java
  17. post-install:
  18. $(INSTALL_DIR) $(IDIR_BEECRYPT)/usr/lib
  19. $(CP) $(WRKINST)/usr/lib/libbeecrypt*.so* \
  20. $(IDIR_BEECRYPT)/usr/lib
  21. include ${TOPDIR}/mk/pkg-bottom.mk