summaryrefslogtreecommitdiff
path: root/botan/Pkgfile
blob: 09033eb4eb8b54c38f6c17cec50d59a5290b4287 (plain)
    1 # Description: Crypto and TLS for Modern C++
    2 # URL: https://botan.randombit.net/
    3 # Maintainer: Tim Biermann, tbier at posteo dot de
    4 # Depends on: sqlite xz
    5 
    6 name=botan
    7 version=2.19.1
    8 release=1
    9 source=(https://botan.randombit.net/releases/Botan-$version.tar.xz)
   10 
   11 build() {
   12   cd ${name^}-$version
   13 
   14   prt-get isinst boost && PKGMK_BOTAN+=' --with-boost'
   15 
   16   /usr/bin/python3 ./configure.py --prefix=/usr \
   17     --with-bzip \
   18     --with-zlib \
   19     --with-openssl \
   20     --with-sqlite3 \
   21     --with-os-feature=getrandom
   22   make
   23   make DESTDIR=$PKG install
   24 
   25   rm -r $PKG/usr/share
   26 }

Generated by cgit