[arch-commits] Commit in pcre/repos (3 files)

Allan McRae allan at archlinux.org
Wed Feb 8 23:59:52 UTC 2012


    Date: Wednesday, February 8, 2012 @ 18:59:51
  Author: allan
Revision: 149677

db-move: moved pcre from [staging] to [testing] (x86_64)

Added:
  pcre/repos/testing-x86_64/
  pcre/repos/testing-x86_64/PKGBUILD
    (from rev 149641, pcre/repos/staging-x86_64/PKGBUILD)
Deleted:
  pcre/repos/staging-x86_64/

----------+
 PKGBUILD |   38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

Copied: pcre/repos/testing-x86_64/PKGBUILD (from rev 149641, pcre/repos/staging-x86_64/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2012-02-08 23:59:51 UTC (rev 149677)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Allan McRae <allan at archlinux.org>
+# Contributor: Eric Belanger <eric at archlinux.org>
+# Contributor: John Proctor <jproctor at prium.net>
+
+pkgname=pcre
+pkgver=8.30
+pkgrel=1
+pkgdesc="A library that implements Perl 5-style regular expressions"
+arch=('i686' 'x86_64')
+url="http://www.pcre.org/"
+license=('BSD')
+depends=('gcc-libs')
+options=('!libtool')
+source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${pkgname}-${pkgver}.tar.bz2{,.sig})
+md5sums=('98e8928cccc945d04279581e778fbdff'
+         '01eee0333fa71687e0b6756db77f94ad')
+
+build() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  
+  [ "${CARCH}" = "x86_64" ] && export CFLAGS="${CFLAGS} -fPIC"
+  ./configure --prefix=/usr --enable-pcre16 --enable-jit \
+    --enable-utf8 --enable-unicode-properties
+  make
+}
+
+check() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 LICENCE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}




More information about the arch-commits mailing list