compat-32/libpcre-32/Pkgfile

24 lines
587 B
Plaintext
Raw Normal View History

# Description: Perl Compatible Regular Expressions
2021-06-19 14:27:22 +02:00
# URL: https://www.pcre.org
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
name=libpcre-32
2021-06-19 14:27:22 +02:00
version=8.45
2015-11-28 09:17:25 +01:00
release=1
2021-11-16 11:09:39 +01:00
source=(https://downloads.sourceforge.net/project/pcre/pcre/$version/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}
}