wok-next annotate t2/receipt @ rev 17358
Add asterisk-speech-recog
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Nov 18 21:43:05 2014 +0100 (2014-11-18) |
parents | 532ab3b57d40 |
children | dfef8de3d270 |
rev | line source |
---|---|
pascal@11227 | 1 # SliTaz package receipt. |
pascal@11227 | 2 |
pascal@11227 | 3 PACKAGE="t2" |
pascal@11227 | 4 VERSION="8.0-rc2" |
pascal@11227 | 5 CATEGORY="development" |
pascal@11227 | 6 SHORT_DESC="System Development Environment." |
pascal@11227 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15590 | 8 LICENSE="GPL2" |
pascal@11227 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@11227 | 10 WEB_SITE="http://www.t2-project.org/" |
pascal@11227 | 11 WGET_URL="http://dl.t2-project.org/source/$TARBALL" |
pascal@15590 | 12 |
pascal@11227 | 13 DEPENDS="slitaz-toolchain bash ncurses" |
pascal@11227 | 14 |
pascal@11227 | 15 # Rules to configure and make the package. |
pascal@11227 | 16 compile_rules() |
pascal@11227 | 17 { |
pascal@11227 | 18 true |
pascal@11227 | 19 } |
pascal@11227 | 20 |
pascal@11227 | 21 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@11227 | 22 genpkg_rules() |
pascal@11227 | 23 { |
pascal@11227 | 24 mkdir -p $fs/usr/lib |
pascal@11227 | 25 cp -a $src $fs/usr/lib/t2 |
pascal@11227 | 26 } |
pascal@11227 | 27 |
pascal@11227 | 28 # Pre and post install commands for Tazpkg. |
pascal@11227 | 29 post_install() |
pascal@11227 | 30 { |
pascal@11227 | 31 [ -L /usr/bin/wget ] && tazpkg get-install wget --forced |
pascal@11227 | 32 cat <<EOT |
pascal@11227 | 33 Now you can do: |
pascal@11227 | 34 # cd /usr/lib/t2 |
pascal@11227 | 35 # scripts/Config |
pascal@11227 | 36 |
pascal@11227 | 37 But read http://www.t2-project.org/handbook/html/t2-book.html before... |
pascal@11227 | 38 |
pascal@11227 | 39 EOT |
pascal@11227 | 40 } |