wok annotate coreutils-file-output-part/receipt @ rev 19974

Up: tor (0.3.0.8), privoxy (3.0.26-stable),
get-palemoon (27.3.0)
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Thu Jun 08 21:57:08 2017 +0200 (2017-06-08)
parents d6ca18366f41
children 9b6a3a5c1a07
rev   line source
rcx@3662 1 # SliTaz package receipt.
rcx@3662 2
rcx@3662 3 PACKAGE="coreutils-file-output-part"
al@19215 4 VERSION="8.25"
rcx@3662 5 CATEGORY="system-tools"
rcx@3662 6 SHORT_DESC="GNU utilities that output file parts."
rcx@3662 7 MAINTAINER="rcx@zoominternet.net"
pascal@14999 8 LICENSE="GPL3"
al@19215 9 WEB_SITE="https://www.gnu.org/software/coreutils/coreutils.html"
al@19215 10
pascal@14999 11 WANTED="coreutils"
rcx@3662 12 DEPENDS="glibc-base"
rcx@3662 13
rcx@3662 14 # Rules to gen a SliTaz package suitable for Tazpkg.
rcx@3662 15 genpkg_rules()
rcx@3662 16 {
al@19215 17 mandir="$fs/usr/share/man/man1"
al@19215 18 mkdir -p $mandir
al@19215 19
al@19215 20 while read i; do
al@19215 21 mkdir -p $fs$(dirname $i)
al@19215 22 cp -a $install$i $fs$i
al@19215 23 find $install -name "$(basename $i).*" -exec cp -a \{\} $mandir \;
al@19215 24 done <<EOT
al@19215 25 /usr/bin/csplit
al@19215 26 /usr/bin/head
al@19215 27 /usr/bin/split
al@19215 28 /usr/bin/tail
al@19215 29 EOT
rcx@3662 30 }
rcx@3662 31
rcx@3662 32 post_remove()
rcx@3662 33 {
al@19215 34 # Restore all Busybox applets that have been replaced
al@19215 35 while read i; do
al@19215 36 busybox ln -s /bin/busybox "$1$i"
al@19215 37 done <<EOT
al@19215 38 /usr/bin/head
al@19215 39 /usr/bin/split
al@19215 40 /usr/bin/tail
al@19215 41 EOT
rcx@3662 42 }