wok view linux-usbdsl/receipt @ rev 2914

Add esmart (E17 evas smart objects)
author Christophe Lincoln <pankso@slitaz.org>
date Wed May 06 22:56:09 2009 +0200 (2009-05-06)
parents
children f306d126580e
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-usbdsl"
4 VERSION="2.6.25.5"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux kernel usb dsl modem modules."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 WANTED="linux"
9 WEB_SITE="http://www.kernel.org/"
12 # Rules to gen a SliTaz package suitable for Tazpkg.
13 genpkg_rules()
14 {
15 local path
16 path=lib/modules/$VERSION-slitaz/kernel
17 mkdir -p $fs/$path
19 export src
20 export _pkg
22 $src/list_modules.sh drivers/usb/atm net/atm | \
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
28 }
30 # Post install/remove commands for Tazpkg.
31 post_install()
32 {
33 depmod -a -b "$1/" $VERSION-slitaz
34 }
36 post_remove()
37 {
38 depmod -a $VERSION-slitaz
39 }