summaryrefslogtreecommitdiff
path: root/libpcre2/Pkgfile
blob: 38f0da9e4ad29f1c98b16693c2c290959e588a37 (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.35
    8 release=2
    9 source=(https://ftp.pcre.org/pub/pcre/pcre2-$version.tar.bz2)
   10 
   11 build() {
   12     cd pcre2-$version
   13 
   14     ./configure \
   15         --prefix=/usr \
   16         --enable-jit \
   17         --enable-pcre2-16 \
   18         --enable-pcre2-32
   19 
   20     make
   21     make DESTDIR=$PKG install
   22 
   23     rm -r $PKG/usr/share/doc
   24 }

Generated by cgit