wok rev 25090

updated parallel (20200322 -> 20220522)
author Hans-G?nter Theisgen
date Sat Jun 18 09:48:53 2022 +0100 (22 months ago)
parents 92be0e14703a
children 12b393d89218
files parallel/description.txt parallel/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/parallel/description.txt	Sat Jun 18 09:48:53 2022 +0100
     1.3 @@ -0,0 +1,9 @@
     1.4 +GNU parallel is a shell tool for executing jobs in parallel
     1.5 +using one or more computers.
     1.6 +A job can be a single command or a small script that has to
     1.7 +be run for each of the lines in the input.
     1.8 +The typical input is a list of files, a list of hosts, a
     1.9 +list of users, a list of URLs, or a list of tables.
    1.10 +A job can also be a command that reads from a pipe. GNU
    1.11 +parallel can then split the input and pipe it into commands
    1.12 +in parallel.
     2.1 --- a/parallel/receipt	Sat Jun 18 09:41:29 2022 +0100
     2.2 +++ b/parallel/receipt	Sat Jun 18 09:48:53 2022 +0100
     2.3 @@ -1,7 +1,7 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="parallel"
     2.7 -VERSION="20200322"
     2.8 +VERSION="20220522"
     2.9  CATEGORY="base-system"
    2.10  TAGS="sync"
    2.11  SHORT_DESC="A tool for executing jobs in parallel using one or more computers."
    2.12 @@ -27,14 +27,13 @@
    2.13  	./configure			\
    2.14  		--prefix=/usr		\
    2.15  		--mandir=/usr/share/man	\
    2.16 -	$CONFIGURE_ARGS &&
    2.17 +		$CONFIGURE_ARGS &&
    2.18  	make &&
    2.19 -	make DESTDIR=$DESTDIR install
    2.20 +	make install DESTDIR=$DESTDIR
    2.21  }
    2.22  
    2.23  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.24  genpkg_rules()
    2.25  {
    2.26 -	mkdir -p $fs/usr
    2.27 -	cp -a $install/usr/bin	$fs/usr
    2.28 +	cook_copy_folders	bin
    2.29  }