wok-next annotate oniguruma/receipt @ rev 20002

Up qps, avidemux, tea
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Fri Oct 20 23:49:15 2017 +0200 (2017-10-20)
parents 4048d48a47c1
children e323d0535e2c
rev   line source
al@19693 1 # SliTaz package receipt.
al@19693 2
al@19693 3 PACKAGE="oniguruma"
al@19693 4 VERSION="6.2.0"
al@19693 5 CATEGORY="libdevel"
al@19693 6 SHORT_DESC="Regular expression library"
al@19693 7 MAINTAINER="al.bobylev@gmail.com"
al@19693 8 LICENSE="BSD"
al@19693 9 WEB_SITE="https://github.com/kkos/oniguruma"
al@19693 10
al@19693 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@19693 12 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
al@19693 13
al@19693 14 BUILD_DEPENDS="automake libtool"
al@19693 15
al@19693 16 # Rules to configure and make the package.
al@19693 17 compile_rules()
al@19693 18 {
al@19693 19 autoreconf -vfi &&
al@19693 20 ./configure $CONFIGURE_ARGS && make && make install &&
al@19693 21
al@19693 22 docdir=$install/usr/share/doc/oniguruma-$VERSION &&
al@19693 23 mkdir -p $docdir && cp doc/* $docdir && rm $docdir/*.ja
al@19693 24 }
al@19693 25
al@19693 26 # Rules to gen a SliTaz package suitable for Tazpkg.
al@19693 27 genpkg_rules()
al@19693 28 {
al@19783 29 copy *.so*
al@19693 30 }