wok-next diff task/receipt @ rev 21678

updated getmail (4.41.0 -> 5.14)
author Hans-G?nter Theisgen
date Mon Jun 29 13:44:08 2020 +0100 (2020-06-29)
parents 7506b35e1c6f
children
line diff
     1.1 --- a/task/receipt	Mon Aug 13 00:47:17 2018 +0300
     1.2 +++ b/task/receipt	Mon Jun 29 13:44:08 2020 +0100
     1.3 @@ -1,36 +1,28 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="task"
     1.8  VERSION="2.3.0"
     1.9  CATEGORY="utilities"
    1.10 -SHORT_DESC="Task is an open source, command line, TODO list manager."
    1.11 +SHORT_DESC="Opensource commandline TODO list manager"
    1.12  MAINTAINER="paul@slitaz.org"
    1.13  LICENSE="MIT"
    1.14 +WEB_SITE="https://taskwarrior.org/"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.17 -WEB_SITE="https://taskwarrior.org/"
    1.18  WGET_URL="http://www.taskwarrior.org/download/$TARBALL"
    1.19 -TAGS="office todo"
    1.20  
    1.21 -DEPENDS="ncurses gcc-lib-base util-linux-uuid"
    1.22  BUILD_DEPENDS="ncurses-dev cmake util-linux-uuid-dev"
    1.23  
    1.24 -# Rules to configure and make the package.
    1.25 -compile_rules()
    1.26 -{
    1.27 -	cd $src
    1.28 -	#./configure \
    1.29 -		#--prefix=/usr \
    1.30 -		#--infodir=/usr/share/info \
    1.31 -		#--mandir=/usr/share/man \
    1.32 -		#$CONFIGURE_ARGS &&
    1.33 -	cmake . -DCMAKE_INSTALL_PREFIX=/usr
    1.34 -	make && make install
    1.35 +compile_rules() {
    1.36 +	cmake \
    1.37 +		-DCMAKE_INSTALL_PREFIX=/usr \
    1.38 +		. &&
    1.39 +	make &&
    1.40 +	make install
    1.41  }
    1.42  
    1.43 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.44 -genpkg_rules()
    1.45 -{
    1.46 -	mkdir -p $fs/usr/share
    1.47 -	cp -a $install/usr/bin $fs/usr
    1.48 -	cp -a $install/usr/share/doc $fs/usr/share
    1.49 +genpkg_rules() {
    1.50 +	copy @std
    1.51 +	DEPENDS="ncurses util-linux-uuid"
    1.52 +	TAGS="office todo"
    1.53  }