wok-undigest annotate t2/receipt @ rev 203

vzquota: Add patch file
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Jan 02 22:33:48 2011 +0100 (2011-01-02)
parents
children
rev   line source
pascal@89 1 # SliTaz package receipt.
pascal@89 2
pascal@89 3 PACKAGE="t2"
pascal@89 4 VERSION="8.0-rc2"
pascal@89 5 CATEGORY="development"
pascal@89 6 SHORT_DESC="System Development Environment."
pascal@89 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@89 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@89 9 WEB_SITE="http://www.t2-project.org/"
pascal@89 10 WGET_URL="http://dl.t2-project.org/source/$TARBALL"
pascal@89 11 DEPENDS="slitaz-toolchain bash ncurses"
pascal@89 12
pascal@89 13 # Rules to configure and make the package.
pascal@89 14 compile_rules()
pascal@89 15 {
pascal@89 16 true
pascal@89 17 }
pascal@89 18
pascal@89 19 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@89 20 genpkg_rules()
pascal@89 21 {
pascal@89 22 mkdir -p $fs/usr/lib
pascal@89 23 cp -a $src $fs/usr/lib/t2
pascal@89 24 }
pascal@89 25
pascal@89 26 # Pre and post install commands for Tazpkg.
pascal@89 27 post_install()
pascal@89 28 {
pascal@89 29 [ -L /usr/bin/wget ] && tazpkg get-install wget --forced
pascal@89 30 cat <<EOT
pascal@89 31 Now you can do:
pascal@89 32 # cd /usr/lib/t2
pascal@89 33 # scripts/Config
pascal@89 34
pascal@89 35 But read http://www.t2-project.org/handbook/html/t2-book.html before...
pascal@89 36
pascal@89 37 EOT
pascal@89 38 }