wok-next view automake/receipt @ rev 20006
nginx-extras: update bdeps, vte-dev: add vte.pc
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Oct 21 15:15:14 2017 +0200 (2017-10-21) |
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 }