wok-next view autoconf/receipt @ rev 19618

memtest: update for GCC5
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Feb 06 18:15:00 2017 +0100 (2017-02-06)
parents 11b5e93cb5f2
children 9a17d981d0f7
line source
1 # SliTaz package receipt.
3 PACKAGE="autoconf"
4 VERSION="2.69"
5 CATEGORY="development"
6 SHORT_DESC="A GNU tool for automatically configuring source code"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.gnu.org/software/autoconf/autoconf.html"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS="m4 perl"
15 BUILD_DEPENDS="m4 perl"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure $CONFIGURE_ARGS && make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 cook_copy_folders bin
27 mkdir -p $fs/usr/share
28 cp -a $install/usr/share/autoconf $fs/usr/share
29 rm -f $fs/usr/share/autoconf/INSTALL
30 }