wok annotate task/receipt @ rev 4599
Up: tor (0.2.2.6-alpha)
author | Paul Issott <paul@slitaz.org> |
---|---|
date | Sun Dec 13 19:16:46 2009 +0000 (2009-12-13) |
parents | ed8cb1e3b21b |
children | 2c869c285fe0 |
rev | line source |
---|---|
paul@2755 | 1 # SliTaz package receipt. |
paul@2755 | 2 |
paul@2755 | 3 PACKAGE="task" |
paul@4483 | 4 VERSION="1.8.3" |
paul@2755 | 5 CATEGORY="utilities" |
paul@2755 | 6 SHORT_DESC="Task is an open source, command line, TODO list manager." |
paul@2755 | 7 MAINTAINER="paul@slitaz.org" |
paul@2755 | 8 DEPENDS="ncurses" |
paul@2755 | 9 BUILD_DEPENDS="ncurses-dev" |
paul@2755 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
paul@4238 | 11 WEB_SITE="http://taskwarrior.org" |
paul@4239 | 12 WGET_URL="http://www.taskwarrior.org/download/$TARBALL" |
paul@2755 | 13 |
paul@2755 | 14 # Rules to configure and make the package. |
paul@2755 | 15 compile_rules() |
paul@2755 | 16 { |
paul@2755 | 17 cd $src |
paul@2755 | 18 ./configure \ |
paul@2755 | 19 --prefix=/usr \ |
paul@2755 | 20 --infodir=/usr/share/info \ |
paul@2755 | 21 --mandir=/usr/share/man \ |
paul@2755 | 22 $CONFIGURE_ARGS && |
paul@2755 | 23 make && make DESTDIR=$PWD/_pkg install |
paul@2755 | 24 } |
paul@2755 | 25 |
paul@2755 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@2755 | 27 genpkg_rules() |
paul@2755 | 28 { |
paul@4238 | 29 mkdir -p $fs/usr/share |
paul@2755 | 30 cp -a $_pkg/usr/bin $fs/usr |
paul@4238 | 31 cp -a $_pkg/usr/share/doc $fs/usr/share |
paul@2755 | 32 } |