opt/libpcre/Pkgfile

24 lines
496 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
2007-06-20 21:22:44 +02:00
version=7.2
release=1
2007-04-26 17:21:17 +02:00
source=(http://dl.sourceforge.net/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
}