wok view 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
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.gnu.org/software/texinfo/"
10 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
11 TAGS="documentation"
13 DEPENDS="ncurses"
14 BUILD_DEPENDS="ncurses"
16 # Rules to compile & install the temporary toolchain by Tazwok.
17 cook_tmp_toolchain()
18 {
19 cd $src
20 ./configure && make && make install
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 cd $src
27 ./configure $CONFIGURE_ARGS &&
28 make && make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/share
35 cp -a $_pkg/usr/bin $fs/usr
36 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
37 }