wok annotate automake/receipt @ rev 21647

updated osm2pgrouting (2.3.3 -> 2.3.6)
author Hans-G?nter Theisgen
date Thu May 30 09:21:38 2019 +0100 (2019-05-30)
parents 11b5e93cb5f2
children 71360a13cd94
rev   line source
pankso@15 1 # SliTaz package receipt.
pankso@15 2
pankso@15 3 PACKAGE="automake"
Hans-G?nter@21010 4 VERSION="1.16.1"
pankso@200 5 CATEGORY="development"
Hans-G?nter@21010 6 SHORT_DESC="A GNU tool for automatically creating Makefiles."
pankso@15 7 MAINTAINER="pankso@slitaz.org"
al@14604 8 LICENSE="GPL2"
Hans-G?nter@21010 9 WEB_SITE="https://www.gnu.org/software/automake/"
Hans-G?nter@21010 10
al@14604 11 TARBALL="$PACKAGE-$VERSION.tar.xz"
pankso@15 12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pankso@15 13
slaxemulator@10415 14 DEPENDS="autoconf"
al@14604 15 BUILD_DEPENDS="autoconf bison flex"
slaxemulator@10415 16
slaxemulator@10415 17 # Rules to compile & install the temporary toolchain.
slaxemulator@10415 18 cook_tmp_toolchain()
slaxemulator@10415 19 {
Hans-G?nter@21010 20 ./configure &&
Hans-G?nter@21010 21 make -j 1 &&
Hans-G?nter@21010 22 make install
slaxemulator@10415 23 }
slaxemulator@10415 24
pankso@15 25 # Rules to configure and make the package.
pankso@15 26 compile_rules()
pankso@15 27 {
slaxemulator@10280 28 ./configure $CONFIGURE_ARGS &&
Hans-G?nter@21010 29 make -j 1 &&
al@14604 30 make install
pankso@15 31 }
pankso@15 32
pankso@15 33 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@15 34 genpkg_rules()
pankso@15 35 {
Hans-G?nter@21010 36 cp -a $install/* $fs
Hans-G?nter@21010 37
Hans-G?nter@21010 38 ln -sf aclocal-${VERSION%.*} $fs/usr/bin/aclocal
Hans-G?nter@21010 39 ln -sf automake-${VERSION%.*} $fs/usr/bin/automake
Hans-G?nter@21010 40
Hans-G?nter@21010 41 rm -rf \
Hans-G?nter@21010 42 $fs/usr/share/doc \
Hans-G?nter@21010 43 $fs/usr/share/info \
Hans-G?nter@21010 44 $fs/usr/share/man
pankso@15 45 }