diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-11-13 00:31:52 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-11-13 00:31:52 +0100 |
commit | 3e9ec766c9b289becc53fba5fc57eb20723eeab7 (patch) | |
tree | 265634e99e345211208f28c6a996b22ccfedff4b /package/beecrypt | |
parent | b6a5c9e0b1ed79e56e7dc8b3a0b2a61856fda576 (diff) | |
parent | d29b7059e0e3dacc3e051c310eabaecabe19a8d2 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/beecrypt')
-rw-r--r-- | package/beecrypt/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/package/beecrypt/Makefile b/package/beecrypt/Makefile new file mode 100644 index 000000000..0f8a9a593 --- /dev/null +++ b/package/beecrypt/Makefile @@ -0,0 +1,28 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(TOPDIR)/rules.mk + +PKG_NAME:= beecrypt +PKG_VERSION:= 4.2.1 +PKG_RELEASE:= 1 +PKG_MD5SUM:= 8441c014170823f2dff97e33df55af1e +PKG_DESCR:= cryptography toolkit +PKG_SECTION:= crypto +PKG_URL:= http://beecrypt.sourceforge.net/ +PKG_SITES:= http://sourceforge.net/projects/beecrypt/files/beecrypt/$(PKG_VERSION)/ + +include $(TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,BEECRYPT,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +CONFIGURE_ARGS+= --without-cplusplus \ + --without-python \ + --without-java + +post-install: + $(INSTALL_DIR) $(IDIR_BEECRYPT)/usr/lib + $(CP) $(WRKINST)/usr/lib/libbeecrypt*.so* \ + $(IDIR_BEECRYPT)/usr/lib + +include ${TOPDIR}/mk/pkg-bottom.mk |