wok view task/receipt @ rev 8933
slitaz-configs doesn't have root so there is no need to chmod root.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Tue Mar 01 07:01:29 2011 +0000 (2011-03-01) |
parents | 4e2fd52e7ed7 |
children | bdb7ae9c7c09 |
line source
1 # SliTaz package receipt.
3 PACKAGE="task"
4 VERSION="1.9.3"
5 CATEGORY="utilities"
6 SHORT_DESC="Task is an open source, command line, TODO list manager."
7 MAINTAINER="paul@slitaz.org"
8 DEPENDS="ncurses gcc-lib-base"
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 }