wok view texinfo/receipt @ rev 9880

xfmpc: Fix BD
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Tue May 17 00:45:18 2011 +0200 (2011-05-17)
parents 866fa2493b1b
children 142d9ddd55e4
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="ncurses"
9 BUILD_DEPENDS="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 cd $src
19 ./configure && make && make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/share
26 cp -a $_pkg/usr/bin $fs/usr
27 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
28 }