From fccdaa986f67f820df2914bef851d5fed77abac8 Mon Sep 17 00:00:00 2001 From: davidovski Date: Wed, 1 Jun 2022 18:23:59 +0100 Subject: added thunderbird and qt5 --- repo/botan/botan.xibuild | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 repo/botan/botan.xibuild (limited to 'repo/botan') diff --git a/repo/botan/botan.xibuild b/repo/botan/botan.xibuild new file mode 100644 index 0000000..1856cf7 --- /dev/null +++ b/repo/botan/botan.xibuild @@ -0,0 +1,38 @@ +#!/bin/sh + +NAME="botan" +DESC="Crypto and TLS for C++11" + +MAKEDEPS="make boost bzip2 openssl sqlite xz zlib" +DEPS="musl libstdc++ libgcc" + +PKG_VER=2.19.1 +SOURCE="https://botan.randombit.net/releases/Botan-$PKG_VER.tar.xz" + +build () { + CXXFLAGS="$CXXFLAGS -O3" + python3 ./configure.py \ + --prefix=/usr \ + --bindir=/usr/bin \ + --sysconfdir=/etc \ + --with-boost \ + --with-bzip2 \ + --with-lzma \ + --with-openmp \ + --with-openssl \ + --with-sqlite3 \ + --with-zlib \ + --with-os-feature=getrandom \ + --disable-static + make +} + +check() { + LD_LIBRARY_PATH="$BUILD_ROOT" ./botan-test +} + + +package () { + make DESTDIR=$PKG_DEST install + rm -rf "$PKG_DEST"/usr/lib/python* +} -- cgit v1.2.1