wok-stable annotate texinfo/receipt @ rev 4466
mirror-tools/mkpkgiso: remove hg dependancy
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Nov 09 15:44:14 2009 +0100 (2009-11-09) |
parents | |
children | 866fa2493b1b |
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 DEPENDS="glibc-base ncurses" |
rcx@3536 | 9 BUILD_DEPENDS="slitaz-toolchain ncurses" |
rcx@3536 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
rcx@3536 | 11 WEB_SITE="http://www.gnu.org/software/texinfo/" |
rcx@3536 | 12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" |
rcx@3536 | 13 |
rcx@3536 | 14 # Rules to configure and make the package. |
rcx@3536 | 15 compile_rules() |
rcx@3536 | 16 { |
rcx@3536 | 17 mv $PACKAGE-4.13 $PACKAGE-$VERSION |
rcx@3536 | 18 |
rcx@3536 | 19 cd $src |
rcx@3536 | 20 ./configure --prefix=/usr \ |
rcx@3536 | 21 $CONFIGURE_ARGS && |
rcx@3536 | 22 make && |
rcx@3536 | 23 make DESTDIR=$src/_pkg install |
rcx@3536 | 24 } |
rcx@3536 | 25 |
rcx@3536 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
rcx@3536 | 27 genpkg_rules() |
rcx@3536 | 28 { |
rcx@3536 | 29 mkdir -p $fs/usr/share |
rcx@3536 | 30 cp -a $_pkg/usr/bin $fs/usr |
rcx@3536 | 31 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share |
rcx@3536 | 32 } |