wok annotate parallel/receipt @ rev 23039

updated libgooglepinyin and libgooglepinyin-dev (0.1.1 -> 0.1.2)
author Hans-G?nter Theisgen
date Wed Mar 04 09:31:52 2020 +0100 (2020-03-04)
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 }