wok-next view autoconf-archive/receipt @ rev 20424

linux-dev: move creation to compile_rules(), keep genpkg_rules() for copying/splitting only
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Jan 12 17:02:57 2018 +0200 (2018-01-12)
parents
children ac33744dc2c2
line source
1 # SliTaz package receipt v2.
3 PACKAGE="autoconf-archive"
4 VERSION="2017.03.21"
5 CATEGORY="development"
6 SHORT_DESC="Collection of GNU Autoconf macros"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL"
9 WEB_SITE="https://www.gnu.org/software/autoconf-archive/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 compile_rules() {
15 ./configure $CONFIGURE_ARGS && make && make install
17 rm -r $install/usr/share/autoconf-archive
18 cook_pick_docs AUTHORS COPYING COPYING.EXCEPTION README TODO
19 }
21 genpkg_rules() {
22 copy @dev
23 DEPENDS="autoconf"
24 }