wok view usbip-module/receipt @ rev 4279

libnl: fix build (http://bugs.gentoo.org/show_bug.cgi?id=225393)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sat Sep 26 06:38:25 2009 +0000 (2009-09-26)
parents 0fcac9995347
children 79fe602a6d4b
line source
1 # SliTaz package receipt.
3 PACKAGE="usbip-module"
4 VERSION="0.1.7"
5 CATEGORY="base-system"
6 SHORT_DESC="general USB device sharing system over IP network, kernel modules."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 DEPENDS="linux"
9 WEB_SITE="http://usbip.sourceforge.net/"
10 WANTED="usbip"
12 # Rules to gen a SliTaz package suitable for Tazpkg.
13 genpkg_rules()
14 {
15 kver=$(grep "kernel version" ../linux/$(ls ../linux/taz)/.config)
16 kver=${kver##* }
17 EXTRAVERSION=_$kver
18 cp -a $_pkg/lib $fs
19 }
21 # Post install/remove commands for Tazpkg.
22 post_install()
23 {
24 chroot "$1/" depmod -a ${EXTRAVERSION#_}-slitaz
25 }
27 post_remove()
28 {
29 depmod -a
30 }