wok view parallel/receipt @ rev 20641

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