wok-next view oniguruma/receipt @ rev 20712

libtorrent: fix rtorrent building for non-64bit archs
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun May 27 12:13:53 2018 +0300 (2018-05-27)
parents e323d0535e2c
children d2950281f122
line source
1 # SliTaz package receipt v2.
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"
15 SPLIT="oniguruma-dev"
17 compile_rules() {
18 autoreconf -vfi &&
19 ./configure $CONFIGURE_ARGS &&
20 fix libtool &&
21 make &&
22 make install || return 1
24 cook_pick_docs doc/*
25 }
27 genpkg_rules() {
28 case $PACKAGE in
29 oniguruma) copy @std;;
30 *-dev) copy @dev;;
31 esac
32 }