wok-next view texinfo/receipt @ rev 7891
Up: shell-fm (v0.7)
author | Ben Arnold <ben@seawolfsanctuary.com> |
---|---|
date | Sat Jan 08 10:38:58 2011 +0000 (2011-01-08) |
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 }