diff options
author | Waldemar Brodkorb <wbrodkorb@conet.de> | 2015-02-03 11:22:10 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbrodkorb@conet.de> | 2015-02-03 11:22:10 +0100 |
commit | 30a1ca44eb6cc1833b876235e3b35c93bbac4065 (patch) | |
tree | 77385db6bf33121ef3408d9fc1a2945dbc13f5be /package/cyassl | |
parent | d52b56753fd291c95468958ca60362ed94c929d7 (diff) | |
parent | ac6189bdb83487944130a42df49414a1b94a33fd (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/cyassl')
-rw-r--r-- | package/cyassl/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/package/cyassl/Makefile b/package/cyassl/Makefile new file mode 100644 index 000000000..2db3b9584 --- /dev/null +++ b/package/cyassl/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 $(ADK_TOPDIR)/rules.mk + +PKG_NAME:= cyassl +PKG_VERSION:= 3.3.0 +PKG_RELEASE:= 1 +PKG_HASH:= 7ce5f704ec4ad72e4b955aeec732ad8a38e8dcd1f93bfc79dfda7c4bc894c67e +PKG_DESCR:= portable embedded ssl library +PKG_SECTION:= libs/crypto +PKG_URL:= http://www.wolfssl.com +PKG_SITES:= http://www.openadk.org/distfiles/ +PKG_OPTS:= dev + +include $(ADK_TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,CYASSL,cyassl,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION),$(PKG_OPTS))) + +CONFIGURE_ARGS+= --disable-examples +CONFIGURE_ENV+= C_EXTRA_FLAGS='$(TARGET_CFLAGS)' + +cyassl-install: + $(INSTALL_DIR) $(IDIR_CYASSL)/usr/lib + $(CP) $(WRKINST)/usr/lib/libcyassl*.so* \ + $(IDIR_CYASSL)/usr/lib + +include $(ADK_TOPDIR)/mk/pkg-bottom.mk |