wok-next view coreutils-character/receipt @ rev 19688
xscreensaver: update bdeps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Apr 11 15:41:38 2017 +0200 (2017-04-11) |
parents | 1d0123efe74c |
children |
line source
1 # SliTaz package receipt.
3 PACKAGE="coreutils-character"
4 VERSION="8.25"
5 CATEGORY="system-tools"
6 SHORT_DESC="GNU utilities that operate on characters."
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"
14 # Rules to gen a SliTaz package suitable for Tazpkg.
15 genpkg_rules()
16 {
17 cook_copy_files expand tr unexpand
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 /usr/bin/expand
27 /usr/bin/tr
28 /usr/bin/unexpand
29 EOT
30 }