wok view parallel/receipt @ rev 20375

I. nagios update: 3.5.0 (March 15, 2013) -> 3.5.1 (2013-08-30) II. typo
author Erkan Yilmaz <erkan@slitaz.org>
date Wed Jun 13 07:19:54 2018 +0000 (2018-06-13)
parents
children 21eeda2ce014
line source
1 # SliTaz package receipt.
3 PACKAGE="parallel"
4 VERSION="20180122"
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 ./configure --prefix=/usr \
18 --mandir=/usr/share/man \
19 $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 }