wok view gzip-full/receipt @ rev 20623

Up rust (1.31.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Dec 31 15:16:31 2018 +0100 (2018-12-31)
parents 9e01bc6321ea
children eb5a3cc75bb7
line source
1 # SliTaz package receipt.
3 PACKAGE="gzip-full"
4 VERSION="1.9"
5 CATEGORY="system-tools"
6 SHORT_DESC="GNU compression utilities"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="http://www.gnu.org/software/gzip/"
10 WANTED="gzip"
12 DEPENDS="gzip"
14 # Rules to gen a SliTaz package suitable for Tazpkg.
15 genpkg_rules()
16 {
17 mkdir -p $fs/usr
19 cp -a $install/usr/bin $fs/usr
20 rm -f $fs/usr/bin/gzip $fs/usr/bin/gunzip
21 }
23 # Pre and post install commands for Tazpkg.
24 # We must remove all Busybox symlink before installing.
25 pre_install()
26 {
27 echo -n "Removing Busybox uncompress and zcat utilities... "
28 rm -f "$1/bin/uncompress" "$1/bin/zcat"
29 status
30 }
32 post_remove()
33 {
34 echo -n "Restoring Busybox uncompress and zcat utilities... "
35 ln -s busybox "$1/bin/uncompress"
36 ln -s busybox "$1/bin/zcat"
37 status
38 }