wok-next annotate swig/receipt @ rev 20749

pcre package was split into separate libs. Update the dependencies of the packages that previously depended on pcre.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Jun 01 00:47:43 2018 +0300 (2018-06-01)
parents 1ff723a6455b
children f48456621a9d
rev   line source
al@20647 1 # SliTaz package receipt v2.
slaxemulator@6872 2
slaxemulator@6872 3 PACKAGE="swig"
al@20647 4 VERSION="3.0.12"
slaxemulator@6872 5 CATEGORY="development"
al@20647 6 SHORT_DESC="A compiler that makes it easy to integrate C and C++ code with \
al@20647 7 scripting languages"
slaxemulator@6872 8 MAINTAINER="devel@slitaz.org"
pascal@15581 9 LICENSE="GPL3"
slaxemulator@6872 10 WEB_SITE="http://www.swig.org/"
al@20647 11 LFS="http://www.linuxfromscratch.org/blfs/view/stable/general/swig.html"
al@20647 12
slaxemulator@6872 13 TARBALL="$PACKAGE-$VERSION.tar.gz"
slaxemulator@6872 14 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
slaxemulator@6872 15
al@20513 16 BUILD_DEPENDS="pcre-dev zlib-dev"
slaxemulator@10357 17
al@20647 18 compile_rules() {
al@20647 19 ./configure \
al@20647 20 --without-clisp \
al@20647 21 --without-maximum-compile-warnings \
al@20647 22 $CONFIGURE_ARGS &&
al@20647 23 make &&
al@20647 24 make install || return 1
al@20647 25
al@20647 26 cook_pick_docs Doc/*
slaxemulator@6872 27 }
al@20647 28
al@20647 29 genpkg_rules() {
al@20647 30 copy @std @dev
al@20749 31 DEPENDS="libpcre perl zlib"
al@20647 32 TAGS="compiler"
slaxemulator@6872 33 }