wok annotate 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
rev   line source
rcx@3536 1 # SliTaz package receipt.
rcx@3536 2
rcx@3536 3 PACKAGE="texinfo"
rcx@3536 4 VERSION="4.13a"
rcx@3536 5 CATEGORY="development"
rcx@3536 6 SHORT_DESC="GNU documentation tools."
rcx@3536 7 MAINTAINER="rcx@zoominternet.net"
rcx@3536 8 DEPENDS="glibc-base ncurses"
rcx@3536 9 BUILD_DEPENDS="slitaz-toolchain ncurses"
rcx@3536 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
rcx@3536 11 WEB_SITE="http://www.gnu.org/software/texinfo/"
rcx@3536 12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
jozee@4973 13 TAGS="documentation"
rcx@3536 14
rcx@3536 15 # Rules to configure and make the package.
rcx@3536 16 compile_rules()
rcx@3536 17 {
rcx@3536 18 mv $PACKAGE-4.13 $PACKAGE-$VERSION
rcx@3536 19
rcx@3536 20 cd $src
rcx@3536 21 ./configure --prefix=/usr \
rcx@3536 22 $CONFIGURE_ARGS &&
rcx@3536 23 make &&
rcx@3536 24 make DESTDIR=$src/_pkg install
rcx@3536 25 }
rcx@3536 26
rcx@3536 27 # Rules to gen a SliTaz package suitable for Tazpkg.
rcx@3536 28 genpkg_rules()
rcx@3536 29 {
rcx@3536 30 mkdir -p $fs/usr/share
rcx@3536 31 cp -a $_pkg/usr/bin $fs/usr
rcx@3536 32 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
rcx@3536 33 }