diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2013-12-27 23:55:53 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2013-12-27 23:55:53 +0000 |
commit | 65eeff79fff8a1bfdf67ca51d147384f46f4d5c0 (patch) | |
tree | fbfdff322b28d9a3c37e6e31c94caf1d8e48dac1 /community/botan/PKGBUILD | |
parent | d53c44f055929b18d7d1b25f8367ee5836c435fc (diff) |
Fri Dec 27 23:54:04 UTC 2013
Diffstat (limited to 'community/botan/PKGBUILD')
-rw-r--r-- | community/botan/PKGBUILD | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/community/botan/PKGBUILD b/community/botan/PKGBUILD index 190945b06..33bd091be 100644 --- a/community/botan/PKGBUILD +++ b/community/botan/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 87983 2013-04-09 20:48:46Z arodseth $ +# $Id: PKGBUILD 101428 2013-11-25 13:19:55Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: Angel Velasquez <angvp@archlinux.org> # Contributor: Douglas Soares de Andrade <douglas@archlinux.org> # Contributor: d'Ronin <daronin@2600.com> pkgname=botan -pkgver=1.10.5 +pkgver=1.10.6 pkgrel=1 pkgdesc='Crypto library written in C++' license=('BSD') @@ -14,22 +14,21 @@ url='http://botan.randombit.net/' depends=('gcc-libs' 'sh') makedepends=('python2') source=("http://files.randombit.net/botan/Botan-${pkgver}.tbz") -sha256sums=('2934c00533847dc93c485081d3ce6aae4a110151a69b587b895241159da77cf3') +sha256sums=('72a9be97350523ee1b06c8722032faa566fcb98456b0b7ac06b45a1dc4446fa7') build() { - cd "$srcdir/Botan-$pkgver" + cd "Botan-$pkgver" - sed -i 's:env python:env python2:' configure.py - ./configure.py --prefix=/usr + python2 configure.py --prefix=/usr make } package() { - cd "$srcdir/Botan-$pkgver" + cd "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 {} \; + install -Dm644 doc/license.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } # vim:set ts=2 sw=2 et: |