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

fix typos: libgphoto2
author Rohit Joshi <jozee@slitaz.org>
date Sat Mar 06 18:51:17 2010 +0000 (2010-03-06)
parents de6186d0a7c1
children 5924ec6bb02f
line source
1 # SliTaz package receipt.
3 PACKAGE="coreutils-file-output-part"
4 VERSION="7.6"
5 CATEGORY="system-tools"
6 SHORT_DESC="GNU utilities that output file parts."
7 MAINTAINER="rcx@zoominternet.net"
8 WEB_SITE="http://www.gnu.org/software/coreutils/"
9 DEPENDS="glibc-base"
10 WANTED="coreutils"
12 # Rules to gen a SliTaz package suitable for Tazpkg.
13 #
14 # This is a special package for installed system or developer. We only take
15 # a few things, as Busybox provides all the basic utilities, but not for compiling.
16 # But DO NOT erase a Busybox applet, remove it before with pre_install rules.
17 #
18 genpkg_rules()
19 {
20 mkdir -p $fs/usr/bin
21 cp -a $_pkg/usr/bin/head $fs/usr/bin
22 cp -a $_pkg/usr/bin/tail $fs/usr/bin
23 cp -a $_pkg/usr/bin/split $fs/usr/bin
24 cp -a $_pkg/usr/bin/csplit $fs/usr/bin
25 }
27 # Pre and post install commands for Tazpkg.
28 # We must remove all Busybox symlink before installing.
29 #
30 pre_install()
31 {
32 local root
33 root=$1
34 echo "Processing pre-install commands..."
35 echo -n "Removing all Busybox replaced utils... "
36 rm -f $root/usr/bin/head $root/usr/bin/tail $root/usr/bin/split
37 status
38 }
40 post_remove()
41 {
42 ln -s /bin/busybox /usr/bin/head
43 ln -s /bin/busybox /usr/bin/tail
44 ln -s /bin/busybox /usr/bin/split
45 }