wok-current rev 25346
updated task (2.5.1 -> 2.6.2)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Jul 25 09:24:40 2022 +0100 (2022-07-25) |
parents | 6e072873c163 |
children | aa7275c5f402 |
files | task/description.txt task/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/task/description.txt Mon Jul 25 09:24:40 2022 +0100 1.3 @@ -0,0 +1,10 @@ 1.4 +Taskwarrior manages your TODO list from your command line. 1.5 +It is flexible, fast, efficient, unobtrusive, does its job 1.6 +then gets out of your way. 1.7 + 1.8 +Taskwarrior scales to fit your workflow. 1.9 +Use it as a simple app that captures tasks, shows you the 1.10 +list, and removes tasks from that list. 1.11 +Leverage its capabilities though, and it becomes a 1.12 +sophisticated data query tool that can help you stay 1.13 +organized, and get through your work.
2.1 --- a/task/receipt Mon Jul 25 07:58:01 2022 +0100 2.2 +++ b/task/receipt Mon Jul 25 09:24:40 2022 +0100 2.3 @@ -1,13 +1,14 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="task" 2.7 -VERSION="2.5.1" 2.8 +VERSION="2.6.2" 2.9 CATEGORY="utilities" 2.10 TAGS="office todo" 2.11 SHORT_DESC="An open source, command line, TODO list manager." 2.12 MAINTAINER="paul@slitaz.org" 2.13 LICENSE="MIT" 2.14 WEB_SITE="https://taskwarrior.org/" 2.15 +REPOLOGY="taskwarrior" 2.16 2.17 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.18 WGET_URL="${WEB_SITE}download/$TARBALL" 2.19 @@ -27,16 +28,13 @@ 2.20 # Rules to configure and make the package. 2.21 compile_rules() 2.22 { 2.23 - #./configure \ 2.24 - #--prefix=/usr \ 2.25 - #--infodir=/usr/share/info \ 2.26 - #--mandir=/usr/share/man \ 2.27 - #$CONFIGURE_ARGS && 2.28 - 2.29 export CC=gcc-83 2.30 export CXX=g++-83 2.31 2.32 - cmake . -DCMAKE_INSTALL_PREFIX=/usr && 2.33 + mkdir _build && 2.34 + cd _build && 2.35 + cmake .. \ 2.36 + -D CMAKE_INSTALL_PREFIX=/usr && 2.37 make && 2.38 make install 2.39 } 2.40 @@ -44,8 +42,7 @@ 2.41 # Rules to gen a SliTaz package suitable for Tazpkg. 2.42 genpkg_rules() 2.43 { 2.44 - mkdir -p $fs/usr/share 2.45 - 2.46 - cp -a $install/usr/bin $fs/usr 2.47 - cp -a $install/usr/share/doc $fs/usr/share 2.48 + cook_copy_folders bin 2.49 + cook_copy_folders rc 2.50 + cook_copy_folders scripts 2.51 }