wok annotate pcre/receipt @ rev 1027

linux: linux-ncp -> linux-ncpfs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jul 10 14:12:07 2008 +0000 (2008-07-10)
parents 4615573735e2
children 402ed718502a
rev   line source
pankso@6 1 # SliTaz package receipt.
pankso@6 2
pankso@6 3 PACKAGE="pcre"
pankso@564 4 VERSION="7.6"
pankso@202 5 CATEGORY="system-tools"
pankso@6 6 SHORT_DESC="Perl Compatible Regular Expressions."
pankso@6 7 MAINTAINER="pankso@slitaz.org"
pankso@6 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@6 9 WEB_SITE="http://www.pcre.org/"
pankso@6 10 WGET_URL="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/$TARBALL"
pankso@6 11
pankso@6 12 # Rules to configure and make the package.
pankso@6 13 compile_rules()
pankso@6 14 {
pankso@6 15 cd $src
pankso@564 16 ./configure \
pankso@564 17 --prefix=/usr \
pankso@564 18 --enable-utf8 \
pankso@564 19 $CONFIGURE_ARGS
pankso@6 20 make
pankso@6 21 make DESTDIR=$PWD/_pkg install
pankso@6 22 }
pankso@6 23
pankso@6 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@6 25 genpkg_rules()
pankso@6 26 {
pankso@6 27 mkdir -p $fs/usr/lib
pankso@6 28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@6 29 }