wok-next view autoconf/receipt @ rev 19733

Some receipts v2: apr, apr-util, aspell, at-spi2-core, at-spi2-atk, atk, atkmm, cairomm, colord, glibmm, libsigc++, libxslt.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri May 26 16:40:11 2017 +0300 (2017-05-26)
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 }