summaryrefslogtreecommitdiff
path: root/libpcre-32/Pkgfile
blob: c94803921cd8de2adc390a3a96fd4fffbd91c6ae (plain)
    1 # Description: Perl Compatible Regular Expressions
    2 # URL:         https://www.pcre.org
    3 # Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
    4 
    5 name=libpcre-32
    6 version=8.45
    7 release=1
    8 source=(https://downloads.sourceforge.net/project/pcre/pcre/$version/pcre-$version.tar.bz2)
    9 
   10 build() {
   11     cd pcre-$version
   12 
   13     ./configure --prefix=/usr \
   14                 --libdir=/usr/lib32 \
   15                 --enable-utf8 \
   16                 --enable-unicode-properties \
   17                 --enable-jit
   18 
   19     make
   20     make DESTDIR=$PKG install
   21 
   22     rm -r $PKG/usr/{bin,include,share/man,share}
   23 }

Generated by cgit