wok view texinfo/receipt @ rev 6161

Up: thunderbird-langpack-de (3.1.3)
author Dominique Corbex <domcox@slitaz.org>
date Fri Sep 10 12:21:01 2010 +0200 (2010-09-10)
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 }