wok-next view task/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents 7506b35e1c6f
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="task"
4 VERSION="2.3.0"
5 CATEGORY="utilities"
6 SHORT_DESC="Opensource commandline TODO list manager"
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://taskwarrior.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://www.taskwarrior.org/download/$TARBALL"
14 BUILD_DEPENDS="ncurses-dev cmake util-linux-uuid-dev"
16 compile_rules() {
17 cmake \
18 -DCMAKE_INSTALL_PREFIX=/usr \
19 . &&
20 make &&
21 make install
22 }
24 genpkg_rules() {
25 copy @std
26 DEPENDS="ncurses util-linux-uuid"
27 TAGS="office todo"
28 }