wok view task/receipt @ rev 4973

add/improve TAGS t* receipts
author Rohit Joshi <jozee@slitaz.org>
date Wed Feb 24 12:13:18 2010 +0000 (2010-02-24)
parents 2c869c285fe0
children e01eb29ff29f
line source
1 # SliTaz package receipt.
3 PACKAGE="task"
4 VERSION="1.8.5"
5 CATEGORY="utilities"
6 SHORT_DESC="Task is an open source, command line, TODO list manager."
7 MAINTAINER="paul@slitaz.org"
8 DEPENDS="ncurses"
9 BUILD_DEPENDS="ncurses-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://taskwarrior.org"
12 WGET_URL="http://www.taskwarrior.org/download/$TARBALL"
13 TAGS="office todo"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make && make DESTDIR=$PWD/_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/doc $fs/usr/share
33 }