forked from ports/compat-32
24 lines
587 B
Plaintext
24 lines
587 B
Plaintext
# Description: Perl Compatible Regular Expressions
|
|
# URL: https://www.pcre.org
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
|
|
name=libpcre-32
|
|
version=8.45
|
|
release=1
|
|
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
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/{bin,include,share/man,share}
|
|
}
|