wok view depmod/receipt @ rev 15701

Up: spacefm (0.9.2)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Dec 22 15:11:37 2013 +0100 (2013-12-22)
parents 9624c47bd4ee
children 36278632a653
line source
1 # SliTaz package receipt.
3 PACKAGE="depmod"
4 VERSION="3.12"
5 CATEGORY="base-system"
6 SHORT_DESC="Kernel modules dependancy tool."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://ftp.kernel.org/pub/linux/utils/kernel/module-init-tools/"
10 WANTED="module-init-tools"
12 DEPENDS="glibc-base gcc-lib-base zlib lzlib"
14 # Rules to gen a SliTaz package suitable for Tazpkg.
15 genpkg_rules()
16 {
17 mkdir -p $fs/sbin
18 cp $install/sbin/depmod $fs/sbin
19 }
21 # Overlap busybox
22 pre_install()
23 {
24 rm -f $1/sbin/depmod
25 }
27 post_remove()
28 {
29 ln -s /bin/busybox $1/sbin/depmod
30 }