wok view task/receipt @ rev 20679

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jan 26 12:26:47 2019 +0100 (2019-01-26)
parents 3c8471163aef
children adc67a2324c0
line source
1 # SliTaz package receipt.
3 PACKAGE="task"
4 VERSION="2.3.0"
5 CATEGORY="utilities"
6 SHORT_DESC="Task is an open source, command line, TODO list manager."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://taskwarrior.org/"
11 WGET_URL="http://www.taskwarrior.org/download/$TARBALL"
12 TAGS="office todo"
14 DEPENDS="ncurses gcc-lib-base util-linux-uuid"
15 BUILD_DEPENDS="ncurses-dev cmake util-linux-uuid-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 #./configure \
22 #--prefix=/usr \
23 #--infodir=/usr/share/info \
24 #--mandir=/usr/share/man \
25 #$CONFIGURE_ARGS &&
26 cmake . -DCMAKE_INSTALL_PREFIX=/usr
27 make && make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/share
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/share/doc $fs/usr/share
36 }