wok-next view automake/receipt @ rev 19662

Remove tazchroot (not used for yearsand unusable)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Mar 16 18:37:27 2017 +0100 (2017-03-16)
parents 11b5e93cb5f2
children 9a17d981d0f7
line source
1 # SliTaz package receipt.
3 PACKAGE="automake"
4 VERSION="1.15"
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 gfortran"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 sed -i 's:/\\\${:/\\\$\\{:' bin/automake.in
22 ./configure \
23 --docdir=/usr/share/doc/automake-$VERSION \
24 $CONFIGURE_ARGS &&
25 make &&
26 make install
28 # Save space by symlinking duplicates
29 cd $install/usr/bin
30 rm aclocal; find . -name 'aclocal-*' -exec ln -s \{\} aclocal \;
31 rm automake; find . -name 'automake-*' -exec ln -s \{\} automake \;
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 cp -a $install/* $fs
38 rm -rf $fs/usr/share/doc $fs/usr/share/info $fs/usr/share/man
39 }