wok view pcre/receipt @ rev 14189

conky: up 1.9.0
author Samuel Trassare <samuel_trassare@yahoo.com>
date Tue Mar 12 14:21:32 2013 -0700 (2013-03-12)
parents 02c2619cbe1c
children 51a1ebbda768
line source
1 # SliTaz package receipt.
3 PACKAGE="pcre"
4 VERSION="8.30"
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"
11 HOST_ARCH="i486 arm"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --enable-utf \
19 --enable-unicode-properties \
20 $CONFIGURE_ARGS &&
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 }