wok view linux64-usbdsl/receipt @ rev 15545

Up: firefox-langpack-ru (17.0.11esr)
author Dominique Corbex <domcox@slitaz.org>
date Sun Nov 24 17:36:40 2013 +0100 (2013-11-24)
parents 416fab3c90c0
children 051931e905b0
line source
1 # SliTaz package receipt.
3 PACKAGE="linux64-usbdsl"
4 VERSION="3.2.40"
5 BASEVER="${VERSION:0:3}"
6 CATEGORY="base-system"
7 SHORT_DESC="The Linux kernel usb dsl modem modules."
8 MAINTAINER="devel@slitaz.org"
9 LICENSE="GPL2"
10 DEPENDS="linux64"
11 WANTED="linux"
12 PROVIDE="linux-usbdsl"
13 WEB_SITE="http://www.kernel.org/"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 local path
19 _pkg=$_pkg/linux64
20 path=lib/modules/$BASEVER-slitaz/kernel
21 mkdir -p $fs/$path
23 export src
24 export _pkg
26 $wanted_stuff/list_modules.sh drivers/usb/atm net/atm | \
27 while read module; do
28 dir=$path/$(dirname $module)
29 [ -d $fs/$dir ] || mkdir -p $fs/$dir
30 cp -a $_pkg/$path/$module $fs/$dir
31 done
32 }
34 # Post install/remove commands for Tazpkg.
35 post_install()
36 {
37 chroot "$1/" depmod -a $BASEVER-slitaz
38 }
40 post_remove()
41 {
42 chroot "$1/" depmod -a $BASEVER-slitaz
43 }