wok-next annotate swig/receipt @ rev 21722
efivar: typo in post_install
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Sep 01 10:31:46 2020 +0000 (2020-09-01) |
parents | 342b30daff76 |
children |
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@21017 | 11 LFS="http://www.linuxfromscratch.org/blfs/view/svn/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 } |