wok annotate parallel/receipt @ rev 21172
updated libedit and libedit-dev (3.0 -> 3.1)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Apr 01 15:57:42 2019 +0100 (2019-04-01) |
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 } |