Merge pull request #4930 from hbl0307106015/botan
botan: add new package
This commit is contained in:
commit
15bf069d8b
1 changed files with 89 additions and 0 deletions
89
libs/botan/Makefile
Normal file
89
libs/botan/Makefile
Normal file
|
@ -0,0 +1,89 @@
|
|||
#
|
||||
# Copyright (C) 2019 rosysong@rosinson.com
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=botan
|
||||
PKG_VERSION:=2.10.0
|
||||
PKG_RELEASE:=1
|
||||
PKG_MAINTAINER:=BangLang Huang <banglang.huang@foxmail.com>
|
||||
|
||||
PKG_SOURCE:=Botan-$(PKG_VERSION).tgz
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/Botan-$(PKG_VERSION)
|
||||
PKG_SOURCE_URL:=https://botan.randombit.net/releases/
|
||||
PKG_HASH:=88481997578c27924724fea76610d43d9f59c99edfe561d41803bbc98871ad31
|
||||
|
||||
PKG_USE_MIPS16:=0
|
||||
PKG_LICENSE:=BSD-2-Clause
|
||||
PKG_LICENSE_FILE:=license.txt
|
||||
PKG_INSTALL:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/botan/Default
|
||||
SUBMENU:=SSL
|
||||
TITLE:=Crypto and TLS for C++11
|
||||
URL:=https://botan.randombit.net
|
||||
endef
|
||||
|
||||
define Package/botan/Default/description
|
||||
Botan (Japanese for peony) is a cryptography library written in C++11 and
|
||||
released under the permissive Simplified BSD license.
|
||||
endef
|
||||
|
||||
define Package/libbotan
|
||||
$(call Package/botan/Default)
|
||||
SECTION:=libs
|
||||
CATEGORY:=Libraries
|
||||
TITLE+= (library)
|
||||
ABI_VERSION:=$(PKG_VERSION)-$(PKG_RELEASE)
|
||||
DEPENDS:=+libstdcpp +libpthread
|
||||
endef
|
||||
|
||||
define Package/libbotan/description
|
||||
$(call Package/botan/Default/description)
|
||||
This package contains the botan library.
|
||||
endef
|
||||
|
||||
CONFIGURE_CMD = ./configure.py
|
||||
|
||||
CONFIGURE_ARGS = \
|
||||
--cpu="$(ARCH)" \
|
||||
--cc-bin="$(TOOLCHAIN_DIR)/bin/$(TARGET_CXX)" \
|
||||
--program-suffix="" \
|
||||
--prefix=$(CONFIGURE_PREFIX) \
|
||||
--exec-prefix=$(CONFIGURE_PREFIX) \
|
||||
--bindir=$(CONFIGURE_PREFIX)/bin \
|
||||
--sbindir=$(CONFIGURE_PREFIX)/sbin \
|
||||
--libexecdir=$(CONFIGURE_PREFIX)/lib \
|
||||
--sysconfdir=/etc \
|
||||
--datadir=$(CONFIGURE_PREFIX)/share \
|
||||
--localstatedir=/var \
|
||||
--mandir=$(CONFIGURE_PREFIX)/man \
|
||||
--infodir=$(CONFIGURE_PREFIX)/info \
|
||||
--optimize-for-size \
|
||||
$(DISABLE_IPV6)
|
||||
|
||||
|
||||
TARGET_LDFLAGS += \
|
||||
-Wl,--gc-sections,--as-needed \
|
||||
-lpthread
|
||||
|
||||
define Build/InstallDev
|
||||
$(INSTALL_DIR) $(1)/usr/include
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/include/botan* $(1)/usr/include/
|
||||
$(INSTALL_DIR) $(1)/usr/lib
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib*.so* $(1)/usr/lib/
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib*.a $(1)/usr/lib/
|
||||
endef
|
||||
|
||||
define Package/libbotan/install
|
||||
$(INSTALL_DIR) $(1)/usr/lib
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib*.so* $(1)/usr/lib/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,libbotan))
|
Loading…
Reference in a new issue