# $Id: PKGBUILD 87983 2013-04-09 20:48:46Z arodseth $ # Maintainer: Alexander Rødseth # Contributor: Angel Velasquez # Contributor: Douglas Soares de Andrade # Contributor: d'Ronin pkgname=botan pkgver=1.10.5 pkgrel=1 pkgdesc='Crypto library written in C++' license=('BSD') arch=('x86_64' 'i686') url='http://botan.randombit.net/' depends=('gcc-libs' 'sh') makedepends=('python2') source=("http://files.randombit.net/botan/Botan-${pkgver}.tbz") sha256sums=('2934c00533847dc93c485081d3ce6aae4a110151a69b587b895241159da77cf3') build() { cd "$srcdir/Botan-$pkgver" sed -i 's:env python:env python2:' configure.py ./configure.py --prefix=/usr make } package() { cd "$srcdir/Botan-$pkgver" make DESTDIR="$pkgdir/usr" install install -Dm644 doc/license.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE" find "$pkgdir/usr/share/doc" -type f -exec chmod 0644 {} \; } # vim:set ts=2 sw=2 et: