blob: 51c49f80652967fdb70a6cc81b413622b3052b5c (
plain)
1 # Description: Perl Compatible Regular Expressions
2 # URL: http://www.pcre.org
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on:
5
6 name=libpcre2
7 version=10.33
8 release=1
9 source=(https://ftp.pcre.org/pub/pcre/pcre2-$version.tar.bz2)
10
11 build() {
12 cd pcre2-$version
13
14 ./configure --prefix=/usr --enable-jit
15
16 make
17 make DESTDIR=$PKG install
18
19 rm -r $PKG/usr/share/doc
20 }
|