wok-next view linux-irda/receipt @ rev 17877
ncurses-common: restore file names, fixes alsamixer+vte F-keys, cairo:
tazweb-rendering-fix no more required for current version of cairo lib.
xlib-xcb known as buggy and disabled on most distros.
tazweb-rendering-fix no more required for current version of cairo lib.
xlib-xcb known as buggy and disabled on most distros.
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Sat Mar 28 14:23:43 2015 +0100 (2015-03-28) |
parents | eb689de65d7e |
children | 08cf996a2307 |
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-irda"
4 VERSION="3.2.53"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux kernel irda modules."
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WANTED="linux"
10 DEPENDS="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/$VERSION-slitaz/kernel
18 mkdir -p $fs/$path
20 export src install
22 $wanted_stuff/list_modules.sh drivers/net/irda net/irda | while read module; do
23 dir=$path/$(dirname $module)
24 [ -d $fs/$dir ] || mkdir -p $fs/$dir
25 cp -a $install/$path/$module $fs/$dir
26 done
27 }
29 # Post install/remove commands for Tazpkg.
30 post_install()
31 {
32 chroot "$root/" depmod -a $VERSION-slitaz
33 }
35 post_remove()
36 {
37 chroot "$root/" depmod -a $VERSION-slitaz
38 }