CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
Imported core-cross ports from 2.5
[crossrootfs.git] / libpcre / Pkgfile
CommitLineData
6dca1d21
JB
1# Description: Perl Compatible Regular Expressions
2# URL: http://www.pcre.org
3# Maintainer: CRUX System Team, core-ports at crux dot nu
4# Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org
5
6name=libpcre
7version=7.9
8release=1
9source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-$version.tar.bz2)
10
11build() {
12 cd pcre-$version
13
14 ./configure --build=$CHOST \
15 --host=$CTARGET \
16 --prefix=/usr \
17 --mandir=/usr/man \
18 --enable-utf8 \
19 --enable-unicode-properties
20 make
21 make DESTDIR=$PKG install
22
23 rm -r $PKG/usr/share
24}