wok diff task/receipt @ rev 25503

f3: include extra programs
author Hans-G?nter Theisgen
date Fri Jan 27 10:37:43 2023 +0100 (16 months ago)
parents 83b97236db32
children a5e183d53960
line diff
     1.1 --- a/task/receipt	Sat Feb 12 11:42:56 2022 +0000
     1.2 +++ b/task/receipt	Fri Jan 27 10:37:43 2023 +0100
     1.3 @@ -1,13 +1,14 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="task"
     1.7 -VERSION="2.5.1"
     1.8 +VERSION="2.6.2"
     1.9  CATEGORY="utilities"
    1.10  TAGS="office todo"
    1.11  SHORT_DESC="An open source, command line, TODO list manager."
    1.12  MAINTAINER="paul@slitaz.org"
    1.13  LICENSE="MIT"
    1.14  WEB_SITE="https://taskwarrior.org/"
    1.15 +REPOLOGY="taskwarrior"
    1.16  
    1.17  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.18  WGET_URL="${WEB_SITE}download/$TARBALL"
    1.19 @@ -27,16 +28,13 @@
    1.20  # Rules to configure and make the package.
    1.21  compile_rules()
    1.22  {
    1.23 -	#./configure \
    1.24 -		#--prefix=/usr \
    1.25 -		#--infodir=/usr/share/info \
    1.26 -		#--mandir=/usr/share/man \
    1.27 -		#$CONFIGURE_ARGS &&
    1.28 -
    1.29  	export	CC=gcc-83
    1.30  	export	CXX=g++-83
    1.31  
    1.32 -	cmake . -DCMAKE_INSTALL_PREFIX=/usr &&
    1.33 +	mkdir	_build &&
    1.34 +	cd	_build &&
    1.35 +	cmake	..			\
    1.36 +		-D CMAKE_INSTALL_PREFIX=/usr &&
    1.37  	make &&
    1.38  	make install
    1.39  }
    1.40 @@ -44,8 +42,7 @@
    1.41  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.42  genpkg_rules()
    1.43  {
    1.44 -	mkdir -p $fs/usr/share
    1.45 -
    1.46 -	cp -a $install/usr/bin		$fs/usr
    1.47 -	cp -a $install/usr/share/doc	$fs/usr/share
    1.48 +	cook_copy_folders	bin
    1.49 +	cook_copy_folders	rc
    1.50 +	cook_copy_folders	scripts
    1.51  }