wok view pcre/receipt @ rev 11134

Up: xorg-xproto to 7.0.22.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Oct 26 20:56:53 2011 +0000 (2011-10-26)
parents 0219c11c76d5
children ce9eff8c4509
line source
1 # SliTaz package receipt.
3 PACKAGE="pcre"
4 VERSION="8.13"
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 # http://bugs.exim.org/show_bug.cgi?id=1136
17 patch -Np2 -i $stuff/r661.diff
18 sed -i '12140d' testdata/testoutput2
19 ./configure --enable-utf8 $CONFIGURE_ARGS &&
20 make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
28 }