wok view pcre/receipt @ rev 11182

Up: pcre to 8.20.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Nov 03 00:14:11 2011 +0000 (2011-11-03)
parents 98b056351a54
children 02c2619cbe1c
line source
1 # SliTaz package receipt.
3 PACKAGE="pcre"
4 VERSION="8.20"
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 --enable-utf8 $CONFIGURE_ARGS &&
17 make && make install
18 }
20 # Rules to gen a SliTaz package suitable for Tazpkg.
21 genpkg_rules()
22 {
23 mkdir -p $fs/usr/lib
24 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
25 }