wok view linux-wan/receipt @ rev 20891

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Feb 26 08:20:18 2019 +0100 (2019-02-26)
parents ffc20f9bd49f
children 73f36875e5a7
line source
1 # SliTaz package receipt.
3 PACKAGE="linux-wan"
4 VERSION="3.16.55"
5 CATEGORY="base-system"
6 SHORT_DESC="Wide Area Networks (WANs) kernel modules"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 WANTED="linux"
10 WEB_SITE="http://kernel.org/"
11 DEPENDS="linux-wireless"
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/wan | 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 }