wok view coreutils-file-output-part/receipt @ rev 18733

Up tazpkg(896)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Dec 21 01:46:18 2015 +0200 (2015-12-21)
parents 2b9f96603415
children d6ca18366f41
line source
1 # SliTaz package receipt.
3 PACKAGE="coreutils-file-output-part"
4 VERSION="8.12"
5 CATEGORY="system-tools"
6 SHORT_DESC="GNU utilities that output file parts."
7 MAINTAINER="rcx@zoominternet.net"
8 LICENSE="GPL3"
9 WEB_SITE="http://www.gnu.org/software/coreutils/"
10 WANTED="coreutils"
12 DEPENDS="glibc-base"
14 # Rules to gen a SliTaz package suitable for Tazpkg.
15 #
16 # This is a special package for installed system or developer. We only take
17 # a few things, as Busybox provides all the basic utilities, but not for compiling.
18 # But DO NOT erase a Busybox applet, remove it before with pre_install rules.
19 #
20 genpkg_rules()
21 {
22 mkdir -p $fs/usr/bin
23 cp -a $install/usr/bin/head $fs/usr/bin
24 cp -a $install/usr/bin/tail $fs/usr/bin
25 cp -a $install/usr/bin/split $fs/usr/bin
26 cp -a $install/usr/bin/csplit $fs/usr/bin
27 }
29 # Pre and post install commands for Tazpkg.
30 # We must remove all Busybox symlink before installing.
31 #
32 pre_install()
33 {
34 echo "Processing pre-install commands..."
35 echo -n "Removing all Busybox replaced utils... "
36 rm -f "$1/usr/bin/head" "$1/usr/bin/tail" "$1/usr/bin/split"
37 status
38 }
40 post_remove()
41 {
42 ln -s /bin/busybox "$1/usr/bin/head"
43 ln -s /bin/busybox "$1/usr/bin/tail"
44 ln -s /bin/busybox "$1/usr/bin/split"
45 }