diff options
Diffstat (limited to 'community')
-rw-r--r-- | community/botan/PKGBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/community/botan/PKGBUILD b/community/botan/PKGBUILD index 762a96f46..73ab39fbf 100644 --- a/community/botan/PKGBUILD +++ b/community/botan/PKGBUILD @@ -5,10 +5,10 @@ pkgname=botan pkgver=1.10.3 -pkgrel=1 +pkgrel=1.1 pkgdesc="Crypto library written in C++" license=('BSD') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://botan.randombit.net/" depends=('gcc-libs' 'sh') makedepends=('python2') @@ -19,6 +19,7 @@ sha1sums=('9f929101bf75c19432f49f57c80d2d26eec91dcb' build() { cd "${srcdir}/Botan-${pkgver}" sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' configure.py + sed -i 's/mabi=64/mabi=n32/g' src/build-data/cc/gcc.txt ./configure.py --prefix=/usr make } |