wok-undigest view automake/receipt @ rev 1229

updated libgio and libgio-dev (2.43.3 -> 2.62.4)
author Hans-G?nter Theisgen
date Wed Sep 09 14:00:14 2020 +0100 (2020-09-09)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="automake"
4 VERSION="1.14.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="http://www.gnu.org/software/automake/"
10 TARBALL="$PACKAGE-$VERSION.tar.xz"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="autoconf"
14 BUILD_DEPENDS="autoconf bison flex"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure $CONFIGURE_ARGS &&
20 make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 cp -a $install/* $fs
27 ln -sf aclocal-${VERSION%.*} $fs/usr/bin/aclocal
28 ln -sf automake-${VERSION%.*} $fs/usr/bin/automake
29 rm -rf $fs/usr/share/doc $fs/usr/share/info $fs/usr/share/man
30 }