wok annotate parallel/receipt @ rev 20210

syslinux: remove memtest & ipxe entries
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Feb 24 11:14:17 2018 +0100 (2018-02-24)
parents
children 21eeda2ce014
rev   line source
pascal@20183 1 # SliTaz package receipt.
pascal@20183 2
pascal@20183 3 PACKAGE="parallel"
pascal@20183 4 VERSION="20180122"
pascal@20183 5 CATEGORY="base-system"
pascal@20183 6 SHORT_DESC="A tool for executing jobs in parallel using one or more computers"
pascal@20183 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@20183 8 LICENSE="GPL3"
pascal@20183 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@20183 10 WEB_SITE="https://www.gnu.org/software/parallel/"
pascal@20183 11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pascal@20183 12 TAGS="sync"
pascal@20183 13
pascal@20183 14 # Rules to configure and make the package.
pascal@20183 15 compile_rules()
pascal@20183 16 {
pascal@20183 17 ./configure --prefix=/usr \
pascal@20183 18 --mandir=/usr/share/man \
pascal@20183 19 $CONFIGURE_ARGS &&
pascal@20183 20 make &&
pascal@20183 21 make DESTDIR=$DESTDIR install
pascal@20183 22 }
pascal@20183 23
pascal@20183 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@20183 25 genpkg_rules()
pascal@20183 26 {
pascal@20183 27 mkdir -p $fs/usr
pascal@20183 28 cp -a $install/usr/bin $fs/usr
pascal@20183 29 }