wok view task/receipt @ rev 22291

updated xorg-xkbutils (1.0.3 -> 1.0.4)
author Hans-G?nter Theisgen
date Wed Nov 13 16:11:02 2019 +0100 (2019-11-13)
parents adc67a2324c0
children ca70cc6b85be
line source
1 # SliTaz package receipt.
3 PACKAGE="task"
4 VERSION="2.5.1"
5 CATEGORY="utilities"
6 TAGS="office todo"
7 SHORT_DESC="An open source, command line, TODO list manager."
8 MAINTAINER="paul@slitaz.org"
9 LICENSE="MIT"
10 WEB_SITE="https://taskwarrior.org/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="${WEB_SITE}download/$TARBALL"
15 DEPENDS="gcc83-lib-base libgnutls ncurses util-linux-uuid"
16 BUILD_DEPENDS="cmake gcc83 gnutls gnutls-dev ncurses-dev util-linux-uuid-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 #./configure \
22 #--prefix=/usr \
23 #--infodir=/usr/share/info \
24 #--mandir=/usr/share/man \
25 #$CONFIGURE_ARGS &&
27 export CC=gcc-83
28 export CXX=g++-83
30 cmake . -DCMAKE_INSTALL_PREFIX=/usr &&
31 make &&
32 make install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr/share
40 cp -a $install/usr/bin $fs/usr
41 cp -a $install/usr/share/doc $fs/usr/share
42 }