wok view pcre/receipt @ rev 18778

syslinux/iso2exe/init: fix 'Show flavor infos'
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jan 01 16:02:21 2016 +0100 (2016-01-01)
parents 51b3e2d10e16
children 7f34d19fe19e
line source
1 # SliTaz package receipt.
3 PACKAGE="pcre"
4 VERSION="8.35"
5 CATEGORY="system-tools"
6 SHORT_DESC="Perl 5 Compatible Regular Expression Library"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.pcre.org/"
11 WGET_URL="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/$TARBALL"
12 HOST_ARCH="i486 arm"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure \
18 --prefix=/usr \
19 --enable-unicode-properties \
20 --enable-pcre16 \
21 --enable-pcre32 \
22 $CONFIGURE_ARGS &&
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }