wok view linux-joystick/receipt @ rev 13197

Up: fail2ban to 0.8.7.1.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Aug 05 11:03:51 2012 +0000 (2012-08-05)
parents 6f536abe4f0b
children 416fab3c90c0
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-joystick"
4 VERSION="3.2.14"
5 BASEVER="${VERSION:0:3}"
6 CATEGORY="base-system"
7 SHORT_DESC="The Linux kernel joystick modules."
8 MAINTAINER="devel@slitaz.org"
9 DEPENDS="linux"
10 WANTED="linux"
11 WEB_SITE="http://www.kernel.org/"
13 # Rules to gen a SliTaz package suitable for Tazpkg.
14 genpkg_rules()
15 {
16 local path
17 path=lib/modules/$BASEVER-slitaz/kernel
18 mkdir -p $fs/$path
19 export src
20 export _pkg
21 $wanted_stuff/list_modules.sh drivers/input/joystick drivers/input/gameport \
22 drivers/input/input-polldev.ko.xz | \
23 while read module; do
24 dir=$path/$(dirname $module)
25 [ -d $fs/$dir ] || mkdir -p $fs/$dir
26 cp -a $_pkg/$path/$module $fs/$dir
27 done
29 for i in $(cat $wanted_stuff/modules.list); do
30 if [ -f $fs/$path/$i ]; then
31 rm -f $fs/$path/$i
32 fi
33 done
34 }
36 # Post install/remove commands for Tazpkg.
37 post_install()
38 {
39 chroot "$1/" depmod -a $BASEVER-slitaz
40 }
42 post_remove()
43 {
44 chroot "$1/" depmod -a $BASEVER-slitaz
45 }