wok view parallel/receipt @ rev 20318

revert back to v4.4,since glib +gtk error :-( probably v4.6.3 would work, but cannot find it on dev server
author Erkan Yilmaz <erkan@slitaz.org>
date Sun May 20 11:19:35 2018 +0000 (2018-05-20)
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 }