wok view linux-irda/receipt @ rev 20974

updated glew-dev again (1.5.8 -> 2.1.0)
author Hans-G?nter Theisgen
date Tue Mar 05 16:42:51 2019 +0100 (2019-03-05)
parents 708b5293dd29
children
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-irda"
4 VERSION="3.16.55"
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="https://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 }