wok view t2/receipt @ rev 13950

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