2012-11-21 11:12:43 -06:00
|
|
|
# Description: Perl Compatible Regular Expressions
|
2021-06-19 22:27:22 +10:00
|
|
|
# URL: https://www.pcre.org
|
2013-02-02 01:54:23 +11:00
|
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
2012-11-21 11:12:43 -06:00
|
|
|
|
|
|
|
name=libpcre-32
|
2021-06-19 22:27:22 +10:00
|
|
|
version=8.45
|
2015-11-28 19:17:25 +11:00
|
|
|
release=1
|
2021-11-16 11:09:39 +01:00
|
|
|
source=(https://downloads.sourceforge.net/project/pcre/pcre/$version/pcre-$version.tar.bz2)
|
2012-11-21 11:12:43 -06:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd pcre-$version
|
|
|
|
|
|
|
|
./configure --prefix=/usr \
|
2015-07-11 17:17:19 +10:00
|
|
|
--libdir=/usr/lib32 \
|
2012-11-21 11:12:43 -06:00
|
|
|
--enable-utf8 \
|
|
|
|
--enable-unicode-properties \
|
|
|
|
--enable-jit
|
2015-11-28 19:17:25 +11:00
|
|
|
|
2012-11-21 11:12:43 -06:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
2016-06-17 21:19:07 +10:00
|
|
|
rm -r $PKG/usr/{bin,include,share/man,share}
|
2012-11-21 11:12:43 -06:00
|
|
|
}
|