# HG changeset patch # User Hans-G?nter Theisgen # Date 1658737480 -3600 # Node ID d531d97128bfc4b61c4f3cc6c879a8aa3db8d981 # Parent 6e072873c163085d5f30e02cb3c5e53302e94bd2 updated task (2.5.1 -> 2.6.2) diff -r 6e072873c163 -r d531d97128bf task/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/task/description.txt Mon Jul 25 09:24:40 2022 +0100 @@ -0,0 +1,10 @@ +Taskwarrior manages your TODO list from your command line. +It is flexible, fast, efficient, unobtrusive, does its job +then gets out of your way. + +Taskwarrior scales to fit your workflow. +Use it as a simple app that captures tasks, shows you the +list, and removes tasks from that list. +Leverage its capabilities though, and it becomes a +sophisticated data query tool that can help you stay +organized, and get through your work. diff -r 6e072873c163 -r d531d97128bf task/receipt --- a/task/receipt Mon Jul 25 07:58:01 2022 +0100 +++ b/task/receipt Mon Jul 25 09:24:40 2022 +0100 @@ -1,13 +1,14 @@ # SliTaz package receipt. PACKAGE="task" -VERSION="2.5.1" +VERSION="2.6.2" CATEGORY="utilities" TAGS="office todo" SHORT_DESC="An open source, command line, TODO list manager." MAINTAINER="paul@slitaz.org" LICENSE="MIT" WEB_SITE="https://taskwarrior.org/" +REPOLOGY="taskwarrior" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="${WEB_SITE}download/$TARBALL" @@ -27,16 +28,13 @@ # Rules to configure and make the package. compile_rules() { - #./configure \ - #--prefix=/usr \ - #--infodir=/usr/share/info \ - #--mandir=/usr/share/man \ - #$CONFIGURE_ARGS && - export CC=gcc-83 export CXX=g++-83 - cmake . -DCMAKE_INSTALL_PREFIX=/usr && + mkdir _build && + cd _build && + cmake .. \ + -D CMAKE_INSTALL_PREFIX=/usr && make && make install } @@ -44,8 +42,7 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/share - - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/share/doc $fs/usr/share + cook_copy_folders bin + cook_copy_folders rc + cook_copy_folders scripts }