wok annotate task/receipt @ rev 14133

Up lzip (1.13)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Feb 28 15:43:44 2013 +0100 (2013-02-28)
parents bdb7ae9c7c09
children de49f29b101e
rev   line source
paul@2755 1 # SliTaz package receipt.
paul@2755 2
paul@2755 3 PACKAGE="task"
paul@13521 4 VERSION="2.1.2"
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"
pascal@5007 8 DEPENDS="ncurses gcc-lib-base"
paul@13521 9 BUILD_DEPENDS="ncurses-dev cmake"
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"
jozee@4973 13 TAGS="office todo"
paul@2755 14
paul@2755 15 # Rules to configure and make the package.
paul@2755 16 compile_rules()
paul@2755 17 {
paul@2755 18 cd $src
paul@13521 19 #./configure \
paul@13521 20 #--prefix=/usr \
paul@13521 21 #--infodir=/usr/share/info \
paul@13521 22 #--mandir=/usr/share/man \
paul@13521 23 #$CONFIGURE_ARGS &&
paul@13521 24 cmake . -DCMAKE_INSTALL_PREFIX=/usr
paul@13521 25 make && make install
paul@2755 26 }
paul@2755 27
paul@2755 28 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@2755 29 genpkg_rules()
paul@2755 30 {
paul@4238 31 mkdir -p $fs/usr/share
paul@13521 32 cp -a $install/usr/bin $fs/usr
paul@13521 33 cp -a $install/usr/share/doc $fs/usr/share
paul@2755 34 }