wok-next view oniguruma/receipt @ rev 19715

Fix building: pciutils, pcmanfm-legacy, arj
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat May 13 17:25:31 2017 +0300 (2017-05-13)
parents
children f463de72afe3
line source
1 # SliTaz package receipt.
3 PACKAGE="oniguruma"
4 VERSION="6.2.0"
5 CATEGORY="libdevel"
6 SHORT_DESC="Regular expression library"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="BSD"
9 WEB_SITE="https://github.com/kkos/oniguruma"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
14 BUILD_DEPENDS="automake libtool"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 autoreconf -vfi &&
20 ./configure $CONFIGURE_ARGS && make && make install &&
22 docdir=$install/usr/share/doc/oniguruma-$VERSION &&
23 mkdir -p $docdir && cp doc/* $docdir && rm $docdir/*.ja
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 cook_copy_files *.so*
30 }