wok view gzip-full/receipt @ rev 23681

Up libsvn (1.13.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Apr 26 15:38:37 2020 +0000 (2020-04-26)
parents 35a23f513b71
children f8a963794d31
line source
1 # SliTaz package receipt.
3 PACKAGE="gzip-full"
4 VERSION="1.10"
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 }