wok view pcre/receipt @ rev 14413

wxWidgets: force enable graphics_ctx & unicode
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Apr 23 19:05:41 2013 +0200 (2013-04-23)
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 }