wok view pcre/receipt @ rev 10009

gnustep-gui: fix bdeps
author Christophe Lincoln <pankso@slitaz.org>
date Thu May 19 02:08:44 2011 +0200 (2011-05-19)
parents 95b9a6a1b091
children 0219c11c76d5
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 &&
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 }