diff options
author | Omar Vega Ramos <ovruni@gnu.org.pe> | 2013-04-10 20:09:05 -0500 |
---|---|---|
committer | Omar Vega Ramos <ovruni@gnu.org.pe> | 2013-04-10 20:09:05 -0500 |
commit | e6ced89f44186539d8fedf73b62024aa2214230e (patch) | |
tree | 307b899f53b6c9cfaae1bf9fe3ee1594195bcd03 /community | |
parent | fab7c8d52f488296ea8d57663395ca457c86e49b (diff) |
Fix build in botan
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 } |