wok view texinfo/receipt @ rev 4973

add/improve TAGS t* receipts
author Rohit Joshi <jozee@slitaz.org>
date Wed Feb 24 12:13:18 2010 +0000 (2010-02-24)
parents df87c33c0cc6
children 49237253b927
line source
1 # SliTaz package receipt.
3 PACKAGE="texinfo"
4 VERSION="4.13a"
5 CATEGORY="development"
6 SHORT_DESC="GNU documentation tools."
7 MAINTAINER="rcx@zoominternet.net"
8 DEPENDS="glibc-base ncurses"
9 BUILD_DEPENDS="slitaz-toolchain ncurses"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.gnu.org/software/texinfo/"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
13 TAGS="documentation"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 mv $PACKAGE-4.13 $PACKAGE-$VERSION
20 cd $src
21 ./configure --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$src/_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/$PACKAGE $fs/usr/share
33 }