wok-6.x view pcre/receipt @ rev 10103
Up: git to 1.7.5.2.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri May 20 15:12:32 2011 +0000 (2011-05-20) |
parents | 3bb8f2adbf51 |
children | 98b056351a54 |
line source
1 # SliTaz package receipt.
3 PACKAGE="pcre"
4 VERSION="8.12"
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 }