[arch-commits] Commit in lib32-pcre2/repos (2 files)

Felix Yan felixonmars at archlinux.org
Sun May 10 20:30:57 UTC 2020


    Date: Sunday, May 10, 2020 @ 20:30:54
  Author: felixonmars
Revision: 626220

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-pcre2/repos/multilib-testing-x86_64/
  lib32-pcre2/repos/multilib-testing-x86_64/PKGBUILD
    (from rev 626219, lib32-pcre2/trunk/PKGBUILD)

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

Copied: lib32-pcre2/repos/multilib-testing-x86_64/PKGBUILD (from rev 626219, lib32-pcre2/trunk/PKGBUILD)
===================================================================
--- multilib-testing-x86_64/PKGBUILD	                        (rev 0)
+++ multilib-testing-x86_64/PKGBUILD	2020-05-10 20:30:54 UTC (rev 626220)
@@ -0,0 +1,50 @@
+
+pkgname=lib32-pcre2
+_pkgname=pcre2
+pkgver=10.35
+pkgrel=1
+pkgdesc='A library that implements Perl 5-style regular expressions. 2nd version (32-bit)'
+arch=('x86_64')
+url='https://www.pcre.org/'
+license=('BSD')
+depends=('lib32-gcc-libs' 'lib32-readline' 'lib32-zlib' 'lib32-bzip2' 'bash')
+source=("https://ftp.pcre.org/pub/pcre/$_pkgname-$pkgver.tar.bz2"{,.sig})
+validpgpkeys=('45F68D54BBE23FB3039B46E59766E084FB0F43D8') # Philip Hazel <ph10 at hermes.cam.ac.uk>
+sha512sums=('ecfb8d48e219daff02874783b7b436fe7d70d8471e44eb66e1e29abb7b0aa67547e6b5fba7058b074ac90eef265ece7d12728f80afdda45b6b8124435f4561fd'
+            'SKIP')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+  
+  ./configure \
+    --prefix=/usr \
+    --libdir=/usr/lib32 \
+    --enable-pcre2-16 \
+    --enable-pcre2-32 \
+    --enable-jit \
+    --enable-pcre2grep-libz \
+    --enable-pcre2grep-libbz2 \
+    --enable-pcre2test-libreadline
+  make
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  make -j1 check
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  
+  make DESTDIR="$pkgdir" install
+  rm -rf "${pkgdir}"/usr/{share,bin,include}
+
+  install -Dm644 LICENCE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list