compat-32/libpcre-32/Pkgfile

25 lines
609 B
Plaintext
Raw Normal View History

# Description: Perl Compatible Regular Expressions
# URL: http://www.pcre.org
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
name=libpcre-32
2015-11-28 09:17:25 +01:00
version=8.38
release=1
source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-$version.tar.bz2)
build() {
cd pcre-$version
./configure --prefix=/usr \
--libdir=/usr/lib32 \
--mandir=/usr/man \
--enable-utf8 \
--enable-unicode-properties \
--enable-jit
2015-11-28 09:17:25 +01:00
make
make DESTDIR=$PKG install
rm -r $PKG/usr/{bin,include,man,share}
}