commit 43165e26af3d74ce379a8ce5440f0ad664994b44 Author: Matthias Schiffer Date: Sat Apr 7 00:21:03 2012 +0200 Add libuecc package This adds a package for the Elliptic Curve Cryptography library libuecc which is a dependency for the fastd tunneling daemon. diff --git a/libs/libuecc/Makefile b/libs/libuecc/Makefile new file mode 100644 index 0000000..c944043 --- /dev/null +++ b/libs/libuecc/Makefile @@ -0,0 +1,38 @@ +# +# Copyright (C) 2012 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=libuecc +PKG_VERSION:=0.1 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 +PKG_SOURCE_URL:=https://projects.universe-factory.net/attachments/download/1 +PKG_MD5SUM:=a4a336d54d97ffb5842f87c48a7ad3e4 + +include $(INCLUDE_DIR)/package.mk +include $(INCLUDE_DIR)/cmake.mk + +define Package/libuecc + SECTION:=libs + CATEGORY:=Libraries + TITLE:=Very small Elliptic Curve Cryptography library + URL:=http://git.universe-factory.net/libuecc/ +endef + +CMAKE_OPTIONS += \ + -DCMAKE_BUILD_TYPE:String="MINSIZEREL" + +define Build/InstallDev + $(INSTALL_DIR) $(1)/usr/include + $(CP) $(PKG_INSTALL_DIR)/usr/include/libuecc $(1)/usr/include/ + $(INSTALL_DIR) $(1)/usr/lib + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libuecc.a $(1)/usr/lib/ +endef + +$(eval $(call BuildPackage,libuecc))