wok-next view oniguruma/receipt @ rev 19743

Remake/fix: alsa-lib, alsaplayer; update base (LFS) packages: bash, binutils, bison, bzip2, diffutils, file, findutils, gawk, gcc, gettext, glibc, gmp, m4, mpc-library, mpfr, ncurses, patch, xz; update: tazpkg, cookutils, svgcleaner.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Jun 06 17:37:54 2017 +0300 (2017-06-06)
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 }