wok-next view pcre/receipt @ rev 19567

Up gettext, pcre, grep, gzip.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Dec 19 06:26:53 2016 +0200 (2016-12-19)
parents 7f34d19fe19e
children 4048d48a47c1
line source
1 # SliTaz package receipt.
3 PACKAGE="pcre"
4 VERSION="8.39"
5 CATEGORY="system-tools"
6 SHORT_DESC="Perl 5 Compatible Regular Expression, library"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="http://www.pcre.org/"
10 HOST_ARCH="i486 arm"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure \
19 --prefix=/usr \
20 --enable-pcre16 \
21 --enable-pcre32 \
22 --enable-jit \
23 --enable-unicode-properties \
24 $CONFIGURE_ARGS &&
25 make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 cook_copy_files *.so*
32 }