opt/libpcre/Pkgfile

24 lines
519 B
Plaintext
Raw Normal View History

# Description: Perl Compatible Regular Expressions
2006-02-23 16:26:10 +01:00
# URL: http://www.pcre.org
# Maintainer: Simon Glo<6C>ner, viper at hometux dot de
# Packager: Han Boetes, han at mijncomputer dot nl
2006-02-23 16:26:10 +01:00
name=libpcre
version=7.5
release=1
2007-09-21 20:21:55 +02:00
source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-$version.tar.bz2)
2006-02-23 16:26:10 +01:00
2006-02-28 11:42:48 +01:00
build() {
2006-02-23 16:26:10 +01:00
cd pcre-$version
./configure \
--prefix=/usr \
2006-12-20 11:07:27 +01:00
--mandir=/usr/man \
2006-02-28 11:42:48 +01:00
--enable-utf8 \
--enable-unicode-properties
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
2007-04-25 14:49:05 +02:00
rm -r $PKG/usr/share
2006-02-23 16:26:10 +01:00
}