wok annotate parallel/receipt @ rev 20648

Up zstd (1.3.8)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jan 12 12:12:27 2019 +0100 (2019-01-12)
parents 06a7eacc4e80
children 5214b716a41a
rev   line source
pascal@20183 1 # SliTaz package receipt.
pascal@20183 2
pascal@20183 3 PACKAGE="parallel"
pascal@20533 4 VERSION="20181022"
pascal@20183 5 CATEGORY="base-system"
pascal@20183 6 SHORT_DESC="A tool for executing jobs in parallel using one or more computers"
pascal@20183 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@20183 8 LICENSE="GPL3"
pascal@20183 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@20183 10 WEB_SITE="https://www.gnu.org/software/parallel/"
pascal@20183 11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pascal@20183 12 TAGS="sync"
pascal@20183 13
pascal@20183 14 # Rules to configure and make the package.
pascal@20183 15 compile_rules()
pascal@20183 16 {
pascal@20533 17 sed -i 's,|| true,2> /dev/null &,' src/Makefile*
pascal@20183 18 ./configure --prefix=/usr \
pascal@20183 19 --mandir=/usr/share/man \
pascal@20183 20 $CONFIGURE_ARGS &&
pascal@20183 21 make &&
pascal@20183 22 make DESTDIR=$DESTDIR install
pascal@20183 23 }
pascal@20183 24
pascal@20183 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@20183 26 genpkg_rules()
pascal@20183 27 {
pascal@20183 28 mkdir -p $fs/usr
pascal@20183 29 cp -a $install/usr/bin $fs/usr
pascal@20183 30 }