wok annotate parallel/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents 5214b716a41a
children 71360a13cd94
rev   line source
pascal@20183 1 # SliTaz package receipt.
pascal@20183 2
pascal@20183 3 PACKAGE="parallel"
Hans-G?nter@23276 4 VERSION="20200322"
pascal@20183 5 CATEGORY="base-system"
Hans-G?nter@21657 6 TAGS="sync"
Hans-G?nter@21657 7 SHORT_DESC="A tool for executing jobs in parallel using one or more computers."
pascal@20183 8 MAINTAINER="pascal.bellard@slitaz.org"
pascal@20183 9 LICENSE="GPL3"
Hans-G?nter@21657 10 WEB_SITE="https://www.gnu.org/software/parallel/"
Hans-G?nter@21657 11
pascal@20183 12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@20183 13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pascal@20183 14
pascal@20183 15 # Rules to configure and make the package.
pascal@20183 16 compile_rules()
pascal@20183 17 {
pascal@20533 18 sed -i 's,|| true,2> /dev/null &,' src/Makefile*
Hans-G?nter@21657 19
Hans-G?nter@21657 20 ./configure \
Hans-G?nter@21657 21 --prefix=/usr \
Hans-G?nter@21657 22 --mandir=/usr/share/man \
pascal@20183 23 $CONFIGURE_ARGS &&
pascal@20183 24 make &&
pascal@20183 25 make DESTDIR=$DESTDIR install
pascal@20183 26 }
pascal@20183 27
pascal@20183 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@20183 29 genpkg_rules()
pascal@20183 30 {
pascal@20183 31 mkdir -p $fs/usr
Hans-G?nter@23276 32 cp -a $install/usr/bin $fs/usr
pascal@20183 33 }