wok view gzip-full/receipt @ rev 20080

revert hexchat: does not work with 2.12.4 version like that
author Erkan Yilmaz <erkan@slitaz.org>
date Wed Sep 27 17:35:06 2017 +0000 (2017-09-27)
parents e30b21af1714
children 35a23f513b71
line source
1 # SliTaz package receipt.
3 PACKAGE="gzip-full"
4 VERSION="1.6"
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 }