wok-next view gzip-full/receipt @ rev 19675

Update some build dependencies
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Mar 24 12:53:44 2017 +0200 (2017-03-24)
parents 9e01bc6321ea
children
line source
1 # SliTaz package receipt.
3 PACKAGE="gzip-full"
4 VERSION="1.8"
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/"
11 WANTED="gzip"
12 DEPENDS="gzip"
14 # Rules to gen a SliTaz package suitable for Tazpkg.
15 genpkg_rules()
16 {
17 cook_copy_folders bin
18 cook_split_rm gzip
19 }
21 pre_install()
22 {
23 # Removing Busybox uncompress and zcat applets
24 # as we have /usr/bin/uncompress and /usr/bin/zcat in this package
25 rm -f "$1/bin/uncompress" "$1/bin/zcat"
26 }
28 post_remove()
29 {
30 ln -s busybox "$1/bin/uncompress"
31 ln -s busybox "$1/bin/zcat"
32 }