wok-next view automake/receipt @ rev 21020
Cleaning is almost finished... I should proceed to upgrades.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Nov 02 14:15:08 2018 +0200 (2018-11-02) |
parents | e7a485521d6a |
children | 0cbe4b1f2230 |
line source
1 # SliTaz package receipt v2.
3 PACKAGE="automake"
4 VERSION="1.16.1"
5 CATEGORY="development"
6 SHORT_DESC="A GNU tool for automatically creating Makefiles"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.gnu.org/software/automake/"
10 LFS="http://www.linuxfromscratch.org/lfs/view/development/chapter06/automake.html"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
15 BUILD_DEPENDS="autoconf bison flex gfortran"
17 compile_rules() {
18 ./configure $CONFIGURE_ARGS &&
19 make &&
20 make install
21 }
23 genpkg_rules() {
24 copy @std @dev
25 DEPENDS="perl autoconf"
26 TAGS="LFS"
27 }