wok view parallel/receipt @ rev 20289
elilo: force ia32 (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Apr 10 13:11:07 2018 +0200 (2018-04-10) |
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 }