wok-next view automake/receipt @ rev 21057

Deal with HOST_ARCH="any"
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Dec 03 14:47:30 2018 +0200 (2018-12-03)
parents d5aab818505e
children 82b613cfd1e0
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"
11 HOST_ARCH="any"
13 TARBALL="$PACKAGE-$VERSION.tar.xz"
14 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
16 BUILD_DEPENDS="autoconf bison flex gfortran"
18 compile_rules() {
19 ./configure $CONFIGURE_ARGS &&
20 make &&
21 make install
22 }
24 genpkg_rules() {
25 copy @std @dev
26 DEPENDS="perl autoconf"
27 TAGS="LFS"
28 }