wok-next annotate automake/receipt @ rev 19745

Update base packages, I'll finish yesterday and then rebuild all these from scratch...
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jun 08 00:20:23 2017 +0300 (2017-06-08)
parents c740762c8991
children 90a5eb560fd6
rev   line source
al@19745 1 # SliTaz package receipt v2.
pankso@15 2
pankso@15 3 PACKAGE="automake"
al@19572 4 VERSION="1.15"
pankso@200 5 CATEGORY="development"
al@14604 6 SHORT_DESC="A GNU tool for automatically creating Makefiles"
pankso@15 7 MAINTAINER="pankso@slitaz.org"
al@14604 8 LICENSE="GPL2"
al@19572 9 WEB_SITE="https://www.gnu.org/software/automake/"
al@19572 10
al@14604 11 TARBALL="$PACKAGE-$VERSION.tar.xz"
pankso@15 12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pankso@15 13
al@19572 14 BUILD_DEPENDS="autoconf bison flex gfortran"
slaxemulator@10415 15
pankso@15 16 # Rules to configure and make the package.
pankso@15 17 compile_rules()
pankso@15 18 {
al@19572 19 sed -i 's:/\\\${:/\\\$\\{:' bin/automake.in
al@19572 20
al@19572 21 ./configure \
al@19572 22 --docdir=/usr/share/doc/automake-$VERSION \
al@19572 23 $CONFIGURE_ARGS &&
al@14604 24 make &&
al@14604 25 make install
pankso@15 26 }
pankso@15 27
pankso@15 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@15 29 genpkg_rules()
pankso@15 30 {
al@19745 31 copy @std @dev
al@19745 32 DEPENDS="autoconf"
pankso@15 33 }