wok-next view coreutils-operations/receipt @ rev 19715

Fix building: pciutils, pcmanfm-legacy, arj
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat May 13 17:25:31 2017 +0300 (2017-05-13)
parents 1d0123efe74c
children
line source
1 # SliTaz package receipt.
3 PACKAGE="coreutils-operations"
4 VERSION="8.25"
5 CATEGORY="system-tools"
6 SHORT_DESC="GNU utilities that perform basic operations."
7 MAINTAINER="rcx@zoominternet.net"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.gnu.org/software/coreutils/coreutils.html"
11 WANTED="coreutils"
12 DEPENDS="glibc-base acl attr"
14 # Rules to gen a SliTaz package suitable for Tazpkg.
15 genpkg_rules()
16 {
17 cook_copy_files cp dd mv install shred
18 }
20 post_remove()
21 {
22 # Restore all Busybox applets that have been replaced
23 while read i; do
24 busybox ln -s /bin/busybox "$1$i"
25 done <<EOT
26 /bin/cp
27 /bin/dd
28 /bin/mv
29 /usr/bin/install
30 EOT
31 }