59 lines
1.5 KiB
Makefile
Raw Normal View History

2018-10-30 13:29:59 +08:00
#
# Copyright (C) 2021 ImmortalWrt
# <https://immortalwrt.org>
2018-10-30 13:29:59 +08:00
#
# This is free software, licensed under the GNU General Public License v3.
2018-10-30 13:29:59 +08:00
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=libcryptopp
PKG_VERSION:=8.5.0
PKG_RELEASE:=1
2018-10-30 13:29:59 +08:00
PKG_SOURCE:=cryptopp$(subst .,,$(PKG_VERSION)).zip
PKG_SOURCE_URL:=https://www.cryptopp.com/
PKG_HASH:=95fc50d59488ebf61a735cce2b2ec2c2561fc682077c7b496273d65a1ed93d9e
2018-10-30 13:29:59 +08:00
PKG_FIXUP:=autoreconf
PKG_BUILD_PARALLEL:=1
PKG_INSTALL:=1
2018-10-30 13:29:59 +08:00
include $(INCLUDE_DIR)/package.mk
UNZIP_CMD:=unzip -q -d $(PKG_BUILD_DIR) $(DL_DIR)/$(PKG_SOURCE)
2018-10-30 13:29:59 +08:00
define Package/libcryptopp
SECTION:=libs
CATEGORY:=Libraries
2021-09-16 23:10:19 +08:00
TITLE:=Free C++ class library of cryptographic schemes
URL:=https://packages.debian.org/sid/libcrypto++-dev
DEPENDS:=+libpthread +libstdcpp
2018-10-30 13:29:59 +08:00
endef
2021-09-16 23:10:19 +08:00
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.
2018-10-30 13:29:59 +08:00
endef
define Build/Prepare
$(Build/Prepare/Default)
cd $(PKG_BUILD_DIR); rm -f GNUmakefile GNUmakefile-cross
2018-10-30 13:29:59 +08:00
endef
2021-09-16 23:10:19 +08:00
2018-10-30 13:29:59 +08:00
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))