These changes are a direct copy of [1]. The original commit
messages were:
> commit 0a6411b56b9edeba1809ffe45c03dbb7261bf45c
> Author: Matthias Schiffer <mschiffer@universe-factory.net>
> Date: Sun May 8 11:39:22 2016 +0200
>
> ecdsautils: update to current git, add libecdsautil
>
> The addition of libecdsautil required us to switch from statically
> linked libuecc to a shared library (as we also want shared
> libecdsautil).
> commit 05bc59f3196b1dc05afe845e1df0073e40f0757d
> Author: Nils Schneider <nils@nilsschneider.net>
> Date: Mon Jul 21 14:51:42 2014 +0200
>
> ecdsautils: update to v0.3.2
> commit db7d9410b3e21f5770f28a3c537ba6a681c24e62
> Author: Nils Schneider <nils@nilsschneider.net>
> Date: Thu Jul 10 16:28:10 2014 +0200
>
> ecdsautils: download using git instead of http
> commit 3a1b6541b43d4801608c391d64582af41e7a155a
> Author: Nils Schneider <nils.schneider@gmail.com>
> Date: Wed Feb 6 13:30:26 2013 +0100
>
> Add ecdsautils v0.2
[1]: 0a6411b56b/utils/ecdsautils/Makefile
Signed-off-by: Dominik Menke <dom@digineo.de>
72 lines
1.9 KiB
Makefile
72 lines
1.9 KiB
Makefile
#
|
|
# Copyright (C) 2012-2016 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:=ecdsautils
|
|
PKG_VERSION:=0.3.2.20160630
|
|
PKG_RELEASE:=1
|
|
PKG_REV:=07538893fb6c2a9539678c45f9dbbf1e4f222b46
|
|
PKG_MAINTAINER:=Matthias Schiffer <mschiffer@universe-factory.net>
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
PKG_SOURCE_URL:=git://github.com/tcatm/$(PKG_NAME).git
|
|
PKG_SOURCE_VERSION:=$(PKG_REV)
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_SOURCE_PROTO:=git
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/libecdsautil
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
DEPENDS:=+libuecc
|
|
TITLE:=ECDSA library
|
|
URL:=https://github.com/tcatm/ecdsautils
|
|
endef
|
|
|
|
define Package/ecdsautils
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
DEPENDS:=+libecdsautil +libuecc
|
|
TITLE:=ECDSA Utilities
|
|
URL:=https://github.com/tcatm/ecdsautils
|
|
endef
|
|
|
|
CMAKE_OPTIONS += \
|
|
-DCMAKE_BUILD_TYPE:String="MINSIZEREL" \
|
|
|
|
|
|
define Package/libecdsautil/description
|
|
Library to sign and verify checksums using ECDSA.
|
|
endef
|
|
|
|
define Package/ecdsautils/description
|
|
Utilities to sign and verify checksums using ECDSA.
|
|
endef
|
|
|
|
define Package/libecdsautil/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libecdsautil.so* $(1)/usr/lib/
|
|
endef
|
|
|
|
define Package/ecdsautils/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/ecdsautil $(1)/usr/bin/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/ecdsakeygen $(1)/usr/bin/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/ecdsasign $(1)/usr/bin/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/ecdsaverify $(1)/usr/bin/
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include $(1)/usr/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib $(1)/usr/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libecdsautil))
|
|
$(eval $(call BuildPackage,ecdsautils))
|