wok-next view pcre/receipt @ rev 15375
Add some licenses
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Fri Oct 18 19:43:55 2013 +0000 (2013-10-18) | 
| parents | 1eb14edfc844 | 
| children | cf655a6d99bf | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="pcre"
     4 VERSION="8.30"
     5 CATEGORY="system-tools"
     6 SHORT_DESC="Perl Compatible Regular Expressions."
     7 MAINTAINER="pankso@slitaz.org"
     8 LICENSE="BSD"
     9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
    10 WEB_SITE="http://www.pcre.org/"
    11 WGET_URL="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/$TARBALL"
    12 HOST_ARCH="i486 arm"
    14 # Rules to configure and make the package.
    15 compile_rules()
    16 {
    17 	cd $src
    18 	./configure \
    19 		--enable-utf \
    20 		--enable-unicode-properties \
    21 		$CONFIGURE_ARGS &&
    22 	make && make install
    23 }
    25 # Rules to gen a SliTaz package suitable for Tazpkg.
    26 genpkg_rules()
    27 {
    28 	mkdir -p $fs/usr/lib
    29 	cp -a $install/usr/lib/*.so* $fs/usr/lib
    30 }