summaryrefslogtreecommitdiff
path: root/core/pcre/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'core/pcre/PKGBUILD')
-rw-r--r--core/pcre/PKGBUILD34
1 files changed, 19 insertions, 15 deletions
diff --git a/core/pcre/PKGBUILD b/core/pcre/PKGBUILD
index e726405f9..f5e0da1c1 100644
--- a/core/pcre/PKGBUILD
+++ b/core/pcre/PKGBUILD
@@ -1,23 +1,25 @@
-# $Id: PKGBUILD 204393 2014-01-19 00:33:32Z allan $
-# Maintainer: Allan McRae <allan@archlinux.org>
+# $Id: PKGBUILD 210215 2014-04-11 23:57:22Z seblu $
+# Maintainer: Sébastien "Seblu" Luttringer
+# Contributor: Allan McRae <allan@archlinux.org>
# Contributor: Eric Belanger <eric@archlinux.org>
# Contributor: John Proctor <jproctor@prium.net>
pkgname=pcre
-pkgver=8.34
-pkgrel=2
-pkgdesc="A library that implements Perl 5-style regular expressions"
+pkgver=8.35
+pkgrel=1
+pkgdesc='A library that implements Perl 5-style regular expressions'
arch=('i686' 'x86_64')
-url="http://www.pcre.org/"
+url='http://www.pcre.org/'
license=('BSD')
-depends=('readline' 'zlib' 'bzip2')
-source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${pkgname}-${pkgver}.tar.bz2{,.sig})
-md5sums=('5439e321351bddd5533551bbce128d07'
+depends=('gcc-libs' 'readline' 'zlib' 'bzip2' 'bash')
+source=("ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/$pkgname-$pkgver.tar.bz2"{,.sig})
+md5sums=('6aacb23986adccd9b3bc626c00979958'
'SKIP')
build() {
- cd "${srcdir}"/${pkgname}-${pkgver}
- ./configure --prefix=/usr \
+ cd $pkgname-$pkgver
+ ./configure \
+ --prefix=/usr \
--enable-unicode-properties \
--enable-pcre16 \
--enable-pcre32 \
@@ -29,13 +31,15 @@ build() {
}
check() {
- cd "${srcdir}"/${pkgname}-${pkgver}
+ cd $pkgname-$pkgver
make -j1 check
}
package() {
- cd "${srcdir}"/${pkgname}-${pkgver}
- make DESTDIR="${pkgdir}" install
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
- install -Dm644 LICENCE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+ install -Dm644 LICENCE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
+
+# vim:set ts=2 sw=2 et: