summaryrefslogtreecommitdiff
path: root/libpcre2/Pkgfile
blob: 915cea88e268f94f97a3249ba09c18f9f9e67dd4 (plain)
    1 # Description: Perl Compatible Regular Expressions
    2 # URL: http://www.pcre.org
    3 # Maintainer: Juergen Daubert, jue at crux dot nu
    4 
    5 name=libpcre2
    6 version=10.38
    7 release=1
    8 source=(https://github.com/PhilipHazel/pcre2/releases/download/pcre2-$version/pcre2-$version.tar.gz)
    9 
   10 build() {
   11 	cd pcre2-$version
   12 
   13 	./configure \
   14 		--prefix=/usr \
   15 		--enable-jit \
   16 		--enable-pcre2-16 \
   17 		--enable-pcre2-32
   18 
   19 	make
   20 	make DESTDIR=$PKG install
   21 
   22 	rm -r $PKG/usr/share/doc
   23 }

Generated by cgit