wok view 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
line source
1 # SliTaz package receipt.
3 PACKAGE="automake"
4 VERSION="1.16.1"
5 CATEGORY="development"
6 SHORT_DESC="A GNU tool for automatically creating Makefiles."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.gnu.org/software/automake/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS="autoconf"
15 BUILD_DEPENDS="autoconf bison flex"
17 # Rules to compile & install the temporary toolchain.
18 cook_tmp_toolchain()
19 {
20 ./configure &&
21 make -j 1 &&
22 make install
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 ./configure $CONFIGURE_ARGS &&
29 make -j 1 &&
30 make install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cp -a $install/* $fs
38 ln -sf aclocal-${VERSION%.*} $fs/usr/bin/aclocal
39 ln -sf automake-${VERSION%.*} $fs/usr/bin/automake
41 rm -rf \
42 $fs/usr/share/doc \
43 $fs/usr/share/info \
44 $fs/usr/share/man
45 }