wok view automake/receipt @ rev 1441

Update BUILD_DEPENDS for eet lxappearance and ncmpc
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 02 16:24:12 2008 +0000 (2008-10-02)
parents b61b574cf78e
children 714a56b6478f
line source
1 # SliTaz package receipt.
3 PACKAGE="automake"
4 VERSION="1.10.1"
5 CATEGORY="development"
6 SHORT_DESC="Tool for automatically generating 'Makefile.in'."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="perl"
9 BUILD_DEPENDS="autoconf"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.gnu.org/software/automake/"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS
23 make
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/share/aclocal-1.10 $fs/usr/share
33 cp -a $_pkg/usr/share/automake-1.10 $fs/usr/share
34 }
36 # Clean old files.
37 pre_install()
38 {
39 rm -rf /usr/share/automake-1.9
40 }