wok view depmod/receipt @ rev 23156

Up nwipe (0.28) again
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 15 17:43:47 2020 +0100 (2020-03-15)
parents 36278632a653
children
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="https://www.kernel.org/pub/linux/utils/kernel/module-init-tools/"
10 WANTED="module-init-tools"
12 DEPENDS="wget 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 }