wok-next view automake/receipt @ rev 19872

Up palemoon (27.5.0)
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Wed Sep 27 20:45:12 2017 +0200 (2017-09-27)
parents c740762c8991
children 90a5eb560fd6
line source
1 # SliTaz package receipt v2.
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 BUILD_DEPENDS="autoconf bison flex gfortran"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 sed -i 's:/\\\${:/\\\$\\{:' bin/automake.in
21 ./configure \
22 --docdir=/usr/share/doc/automake-$VERSION \
23 $CONFIGURE_ARGS &&
24 make &&
25 make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 copy @std @dev
32 DEPENDS="autoconf"
33 }