wok annotate parallel/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
parents 21eeda2ce014
children a3322c07c687
rev   line source
pascal@20183 1 # SliTaz package receipt.
pascal@20183 2
pascal@20183 3 PACKAGE="parallel"
Hans-G?nter@21657 4 VERSION="20190522"
pascal@20183 5 CATEGORY="base-system"
Hans-G?nter@21657 6 TAGS="sync"
Hans-G?nter@21657 7 SHORT_DESC="A tool for executing jobs in parallel using one or more computers."
pascal@20183 8 MAINTAINER="pascal.bellard@slitaz.org"
pascal@20183 9 LICENSE="GPL3"
Hans-G?nter@21657 10 WEB_SITE="https://www.gnu.org/software/parallel/"
Hans-G?nter@21657 11
pascal@20183 12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@20183 13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pascal@20183 14
pascal@20183 15 # Rules to configure and make the package.
pascal@20183 16 compile_rules()
pascal@20183 17 {
pascal@20533 18 sed -i 's,|| true,2> /dev/null &,' src/Makefile*
Hans-G?nter@21657 19
Hans-G?nter@21657 20 ./configure \
Hans-G?nter@21657 21 --prefix=/usr \
Hans-G?nter@21657 22 --mandir=/usr/share/man \
pascal@20183 23 $CONFIGURE_ARGS &&
pascal@20183 24 make &&
pascal@20183 25 make DESTDIR=$DESTDIR install
pascal@20183 26 }
pascal@20183 27
pascal@20183 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@20183 29 genpkg_rules()
pascal@20183 30 {
pascal@20183 31 mkdir -p $fs/usr
pascal@20183 32 cp -a $install/usr/bin $fs/usr
pascal@20183 33 }