wok annotate texinfo/receipt @ rev 13394

Up glib (2.32.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Sep 26 09:31:22 2012 +0200 (2012-09-26)
parents 142d9ddd55e4
children 9ea130dd5e4f
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
rcx@3536 9 WEB_SITE="http://www.gnu.org/software/texinfo/"
rcx@3536 10 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
jozee@4973 11 TAGS="documentation"
rcx@3536 12
slaxemulator@10417 13 DEPENDS="ncurses"
slaxemulator@10417 14 BUILD_DEPENDS="ncurses"
slaxemulator@10417 15
slaxemulator@10417 16 # Rules to compile & install the temporary toolchain by Tazwok.
slaxemulator@10417 17 cook_tmp_toolchain()
slaxemulator@10417 18 {
slaxemulator@10417 19 cd $src
slaxemulator@10417 20 ./configure && make && make install
slaxemulator@10417 21 }
slaxemulator@10417 22
rcx@3536 23 # Rules to configure and make the package.
rcx@3536 24 compile_rules()
rcx@3536 25 {
rcx@3536 26 cd $src
slaxemulator@10126 27 ./configure $CONFIGURE_ARGS &&
slaxemulator@10126 28 make && make install
rcx@3536 29 }
rcx@3536 30
rcx@3536 31 # Rules to gen a SliTaz package suitable for Tazpkg.
rcx@3536 32 genpkg_rules()
rcx@3536 33 {
rcx@3536 34 mkdir -p $fs/usr/share
rcx@3536 35 cp -a $_pkg/usr/bin $fs/usr
rcx@3536 36 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
rcx@3536 37 }