wok annotate pigz/receipt @ rev 24299
Update some current_version
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Jan 15 15:21:40 2022 +0000 (2022-01-15) |
parents | 86790a278e70 |
children | 453c249b6219 |
rev | line source |
---|---|
pascal@15194 | 1 # SliTaz package receipt. |
pascal@15194 | 2 |
pascal@15194 | 3 PACKAGE="pigz" |
pascal@20421 | 4 VERSION="2.4" |
pascal@15194 | 5 CATEGORY="base-system" |
pascal@15194 | 6 SHORT_DESC="Parallel Implementation of GZip." |
pascal@15194 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15195 | 8 LICENSE="Apache" |
pascal@15194 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@15195 | 10 WEB_SITE="http://www.zlib.net/pigz" |
pascal@15195 | 11 WGET_URL="$WEB_SITE/$TARBALL" |
pascal@15194 | 12 |
pascal@15194 | 13 DEPENDS="" |
pascal@15194 | 14 BUILD_DEPENDS="" |
pascal@15194 | 15 |
pascal@15194 | 16 # Rules to configure and make the package. |
pascal@15194 | 17 compile_rules() |
pascal@15194 | 18 { |
pascal@15194 | 19 sed -i 's/-lz/& -lm/' Makefile |
pascal@15194 | 20 make |
pascal@15194 | 21 } |
pascal@15194 | 22 |
pascal@15194 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@15194 | 24 genpkg_rules() |
pascal@15194 | 25 { |
pascal@20421 | 26 mkdir -p $fs/usr/bin $install/usr/share/man |
pascal@20421 | 27 cp $src/pigz.1 $install/usr/share/man |
pascal@15194 | 28 cp $src/pigz $fs/usr/bin |
pascal@15194 | 29 ln -s pigz $fs/usr/bin/unpigz |
pascal@15194 | 30 } |
pascal@23955 | 31 |
pascal@23955 | 32 pre_remove() |
pascal@23955 | 33 { |
pascal@23955 | 34 sed -i '/gzip=pigz/d' $1/etc/profile |
pascal@23955 | 35 } |
pascal@23955 | 36 |
pascal@23955 | 37 post_install() |
pascal@23955 | 38 { |
pascal@23955 | 39 grep -qs 'gzip=pigz' $1/etc/profile || |
pascal@23955 | 40 echo 'alias gzip=pigz' >> $1/etc/profile |
pascal@23955 | 41 } |