compat-32/libpcre-32/Pkgfile

24 lines
555 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
2019-02-25 12:09:10 +01:00
version=8.43
2015-11-28 09:17:25 +01:00
release=1
2017-08-05 06:50:43 +02:00
source=(https://ftp.pcre.org/pub/pcre/pcre-$version.tar.bz2)
build() {
cd pcre-$version
./configure --prefix=/usr \
--libdir=/usr/lib32 \
--enable-utf8 \
--enable-unicode-properties \
--enable-jit
2015-11-28 09:17:25 +01:00
make
make DESTDIR=$PKG install
2016-06-17 13:19:07 +02:00
rm -r $PKG/usr/{bin,include,share/man,share}
}