mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-09-11 02:44:23 +08:00
update 2026-08-21 04:21:24
This commit is contained in:
@@ -0,0 +1,68 @@
|
||||
#
|
||||
# Copyright (C) 2021 ImmortalWrt
|
||||
# <https://immortalwrt.org>
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v3.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=libcryptopp
|
||||
PKG_VERSION:=8.5.0
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE:=cryptopp$(subst .,,$(PKG_VERSION)).zip
|
||||
PKG_SOURCE_URL:=https://github.com/weidai11/cryptopp/releases/download/CRYPTOPP_$(subst .,_,$(PKG_VERSION))/
|
||||
PKG_HASH:=95fc50d59488ebf61a735cce2b2ec2c2561fc682077c7b496273d65a1ed93d9e
|
||||
|
||||
PKG_FIXUP:=autoreconf
|
||||
PKG_BUILD_PARALLEL:=1
|
||||
PKG_INSTALL:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
UNZIP_CMD:=unzip -q -d $(PKG_BUILD_DIR) $(DL_DIR)/$(PKG_SOURCE)
|
||||
|
||||
define Package/libcryptopp
|
||||
SECTION:=libs
|
||||
CATEGORY:=Libraries
|
||||
TITLE:=Free C++ class library of cryptographic schemes
|
||||
URL:=https://packages.debian.org/sid/libcrypto++-dev
|
||||
DEPENDS:=+libpthread +libstdcpp
|
||||
endef
|
||||
|
||||
define Package/libcryptopp/description
|
||||
Crypto++ is library for creating C++ programs which use cryptographic
|
||||
algorithms. The library uses a Pipes & Filters architecture with heavy
|
||||
use of templates and abstract base classes.
|
||||
endef
|
||||
|
||||
PKG_BUILD_FILE:=cryptopp-autotools$(subst .,,$(PKG_VERSION)).zip
|
||||
define Download/autotools
|
||||
URL:=https://github.com/noloader/cryptopp-autotools/releases/download/CRYPTOPP_$(subst .,_,$(PKG_VERSION))/
|
||||
FILE:=$(PKG_BUILD_FILE)
|
||||
HASH:=91e06c53b517753f0ba02b92bb259e0ee929ebc6ad4f8b5c190d39ba407d3fbe
|
||||
endef
|
||||
$(eval $(call Download,autotools))
|
||||
|
||||
define Build/Prepare
|
||||
$(PKG_UNPACK)
|
||||
unzip -q -d $(PKG_BUILD_DIR) $(DL_DIR)/$(PKG_BUILD_FILE)
|
||||
cd $(PKG_BUILD_DIR); rm -f GNUmakefile GNUmakefile-cross
|
||||
$(Build/Patch)
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
$(INSTALL_DIR) $(1)/usr/include/cryptopp
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/include/cryptopp/* $(1)/usr/include/cryptopp/
|
||||
$(INSTALL_DIR) $(1)/usr/lib
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libcryptopp.{a,so*} $(1)/usr/lib/
|
||||
endef
|
||||
|
||||
define Package/libcryptopp/install
|
||||
$(INSTALL_DIR) $(1)/usr/lib
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libcryptopp.so* $(1)/usr/lib/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,libcryptopp))
|
||||
@@ -0,0 +1,24 @@
|
||||
--- a/Makefile.am
|
||||
+++ b/Makefile.am
|
||||
@@ -458,14 +458,13 @@ testvector_FILES = \
|
||||
TestVectors/lea.txt TestVectors/sosemanuk.txt \
|
||||
TestVectors/mars.txt TestVectors/speck.txt \
|
||||
TestVectors/nr.txt TestVectors/tea.txt \
|
||||
- TestVectors/ocb.txt TestVectors/threefish.txt \
|
||||
- TestVectors/panama.txt TestVectors/ttmac.txt \
|
||||
- TestVectors/poly1305aes.txt TestVectors/vmac.txt \
|
||||
- TestVectors/poly1305_tls.txt TestVectors/wake.txt \
|
||||
- TestVectors/rabbit.txt TestVectors/whrlpool.txt \
|
||||
- TestVectors/Readme.txt TestVectors/xchacha.txt \
|
||||
- TestVectors/rsa_oaep.txt TestVectors/xts.txt \
|
||||
- TestVectors/rsa_pkcs1_1_5.txt
|
||||
+ TestVectors/panama.txt TestVectors/threefish.txt \
|
||||
+ TestVectors/poly1305aes.txt TestVectors/ttmac.txt \
|
||||
+ TestVectors/poly1305_tls.txt TestVectors/vmac.txt \
|
||||
+ TestVectors/rabbit.txt TestVectors/wake.txt \
|
||||
+ TestVectors/Readme.txt TestVectors/whrlpool.txt \
|
||||
+ TestVectors/rsa_oaep.txt TestVectors/xchacha.txt \
|
||||
+ TestVectors/rsa_pkcs1_1_5.txt TestVectors/xts.txt
|
||||
|
||||
# Create with 'ls TestPrograms/test_*.cxx'. These files do not get installed.
|
||||
# They exist so the feature tests can be run from the configure directory.
|
||||
Reference in New Issue
Block a user