wok view util-linux-ng-blkid/receipt @ rev 8894

Made lighttpd and lighttpd-ssl only backup vhosts.conf and lighttpd.conf in /etc/lighttpd folder. Doesn't need to backup full /etc/lighttpd folder cause only those files would be affected.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Feb 27 13:44:14 2011 +0000 (2011-02-27)
parents 78988bd0500a
children edf212a8db46
line source
1 # SliTaz package receipt.
3 PACKAGE="util-linux-ng-blkid"
4 VERSION="2.19"
5 CATEGORY="base-system"
6 SHORT_DESC="The blkid utility and library from Util linux NG."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="glibc-base util-linux-ng-uuid"
9 BUILD_DEPENDS="slitaz-toolchain"
10 WANTED="util-linux-ng"
11 WEB_SITE="http://kernel.org/~kzak/util-linux-ng/"
13 # Rules to gen a SliTaz package suitable for Tazpkg.
14 genpkg_rules()
15 {
16 mkdir -p $fs/lib $fs/sbin $fs/usr/lib
17 cp -a $_pkg/sbin/blkid $fs/sbin
18 cp -a $_pkg/lib/libblkid.so* $fs/lib
19 cp -a $_pkg/usr/lib/libblkid.so* $fs/usr/lib
20 }
22 # Overlap busybox
23 pre_install()
24 {
25 rm -f $1/sbin/blkid
26 }
28 post_remove()
29 {
30 ln -s /bin/busybox /sbin/blkid
31 }