wok view pcre/receipt @ rev 7607
Up: pcre to 8.11.
| author | Christopher Rogers <slaxemulator@gmail.com> | 
|---|---|
| date | Sat Dec 11 08:45:59 2010 +0000 (2010-12-11) | 
| parents | a41ab4cbb994 | 
| children | 95b9a6a1b091 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="pcre"
     4 VERSION="8.11"
     5 CATEGORY="system-tools"
     6 SHORT_DESC="Perl Compatible Regular Expressions."
     7 MAINTAINER="pankso@slitaz.org"
     8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
     9 WEB_SITE="http://www.pcre.org/"
    10 WGET_URL="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/$TARBALL"
    12 # Rules to configure and make the package.
    13 compile_rules()
    14 {
    15 	cd $src
    16 	./configure \
    17 		--prefix=/usr \
    18 		--enable-utf8 \
    19 		$CONFIGURE_ARGS &&
    20 	make &&
    21 	make DESTDIR=$PWD/_pkg install
    22 }
    24 # Rules to gen a SliTaz package suitable for Tazpkg.
    25 genpkg_rules()
    26 {
    27 	mkdir -p $fs/usr/lib
    28 	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    29 }