diff options
Diffstat (limited to 'core/pcre')
-rw-r--r-- | core/pcre/PKGBUILD | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/core/pcre/PKGBUILD b/core/pcre/PKGBUILD index 08a9117a6..86269ade2 100644 --- a/core/pcre/PKGBUILD +++ b/core/pcre/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 163492 2012-07-13 12:30:53Z allan $ +# $Id: PKGBUILD 172477 2012-12-03 21:23:28Z allan $ # Maintainer: Allan McRae <allan@archlinux.org> # Contributor: Eric Belanger <eric@archlinux.org> # Contributor: John Proctor <jproctor@prium.net> pkgname=pcre -pkgver=8.31 +pkgver=8.32 pkgrel=1 pkgdesc="A library that implements Perl 5-style regular expressions" arch=('i686' 'x86_64') @@ -13,15 +13,14 @@ license=('BSD') depends=('gcc-libs') options=('!libtool') source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${pkgname}-${pkgver}.tar.bz2{,.sig}) -md5sums=('1c9a276af932b5599157f96e945391f0' - '873bcd2cd9f1e0aa1e28e256b3e31506') +md5sums=('62f02a76bb57a40bc66681760ed511d5' + '275ffe85e62565118756f8f3d08bb70f') build() { cd "${srcdir}"/${pkgname}-${pkgver} - - [ "${CARCH}" = "x86_64" ] && export CFLAGS="${CFLAGS} -fPIC" - ./configure --prefix=/usr --enable-pcre16 --enable-jit \ - --enable-utf8 --enable-unicode-properties + ./configure --prefix=/usr \ + --enable-pcre16 --enable-pcre32 --enable-jit \ + --enable-utf --enable-unicode-properties make } |