wok view linux-dialup/receipt @ rev 16324

connman-ui: set a meaningful name to the source for mirror:/source/packages-cooking/
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 10 11:04:26 2014 +0000 (2014-04-10)
parents eb689de65d7e
children 08cf996a2307
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-dialup"
4 VERSION="3.2.53"
5 CATEGORY="base-system"
6 SHORT_DESC="The Linux kernel dial-up modules."
7 MAINTAINER="domcox@slitaz.org"
8 LICENSE="GPL2"
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/$VERSION-slitaz/kernel
18 mkdir -p $fs/$path
19 export src install
20 $wanted_stuff/list_modules.sh drivers/tty/serial/serial_cs.ko.xz \
21 drivers/usb/serial drivers/net/usb/hso.ko.xz | \
22 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
28 for i in $(cat $wanted_stuff/modules.list); do
29 if [ -f $fs/$path/$i ]; then
30 rm -f $fs/$path/$i
31 fi
32 done
33 }
35 # Post install/remove commands for Tazpkg.
36 post_install()
37 {
38 chroot "$root/" depmod -a $VERSION-slitaz
39 }
41 post_remove()
42 {
43 chroot "$root/" depmod -a $VERSION-slitaz
44 }