blob: ea7a057d51c8f10aadb748843c15579d1adb7620 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
pkgname=pcre2-git
pkgver=10.44.r219.gd50aa583
pkgrel=1
pkgdesc="A library that implements Perl 5-style regular expressions"
arch=('i686' 'x86_64')
url="https://www.pcre.org/"
license=('BSD-3-Clause')
depends=('glibc' 'bzip2' 'readline' 'zlib')
makedepends=('git')
provides=("pcre2=$pkgver" libpcre2-{8,16,32,posix}.so)
conflicts=('pcre2')
options=('staticlibs')
source=("git+https://github.com/PCRE2Project/pcre2.git")
sha256sums=('SKIP')
prepare() {
cd "pcre2"
git submodule update --init --recursive
}
pkgver() {
cd "pcre2"
_tag=$(git tag -l --sort -v:refname | grep -E '^pcre2-[0-9\.]+$' | head -n1)
_rev=$(git rev-list --count $_tag..HEAD)
_hash=$(git rev-parse --short HEAD)
printf "%s.r%s.g%s" "$_tag" "$_rev" "$_hash" | sed 's/^pcre2-//'
}
build() {
cd "pcre2"
./autogen.sh
CFLAGS="$CFLAGS -ffat-lto-objects" \
CXXFLAGS="$CXXFLAGS -ffat-lto-objects" \
./configure \
--prefix="/usr" \
--enable-jit \
--enable-pcre2-16 \
--enable-pcre2-32 \
--enable-pcre2grep-libbz2 \
--enable-pcre2grep-libz \
--enable-pcre2test-libreadline
make
}
check() {
cd "pcre2"
#make check
}
package() {
cd "pcre2"
make DESTDIR="$pkgdir" install
install -Dm644 "LICENCE.md" -t "$pkgdir/usr/share/licenses/pcre2"
}
|