wok view automake/receipt @ rev 16813

Update automake to version 1.14.1
author Yuri Pourre <yuripourre@gmail.com>
date Thu Jul 10 22:24:16 2014 -0300 (2014-07-10)
parents a09e9d64e4c9
children 51b3e2d10e16
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 compile & install the temporary toolchain.
17 cook_tmp_toolchain()
18 {
19 cd $src
20 ./configure && make && make install
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 ./configure $CONFIGURE_ARGS &&
27 make &&
28 make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 cp -a $install/* $fs
35 ln -sf aclocal-${VERSION%.*} $fs/usr/bin/aclocal
36 ln -sf automake-${VERSION%.*} $fs/usr/bin/automake
37 rm -rf $fs/usr/share/doc $fs/usr/share/info $fs/usr/share/man
38 }