wok annotate linux-wimax/receipt @ rev 22437
john: fix link, add to right place
author | Erkan Yilmaz <erkan@slitaz.org> |
---|---|
date | Sun Dec 22 16:03:18 2019 +0000 (2019-12-22) |
parents | 708b5293dd29 |
children |
rev | line source |
---|---|
pascal@3056 | 1 # SliTaz package receipt. |
pascal@3056 | 2 |
pascal@3056 | 3 PACKAGE="linux-wimax" |
pascal@20261 | 4 VERSION="3.16.55" |
pascal@3056 | 5 CATEGORY="base-system" |
pascal@3056 | 6 SHORT_DESC="The Linux kernel wimax modules." |
pankso@3864 | 7 MAINTAINER="devel@slitaz.org" |
pascal@14657 | 8 LICENSE="GPL2" |
pascal@3056 | 9 WANTED="linux" |
pascal@12304 | 10 DEPENDS="linux" |
pascal@20421 | 11 WEB_SITE="https://www.kernel.org/" |
pascal@3056 | 12 |
pascal@3056 | 13 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@3056 | 14 genpkg_rules() |
pascal@3056 | 15 { |
pascal@3056 | 16 local path |
pankso@15855 | 17 path=lib/modules/$VERSION-slitaz/kernel |
pascal@3056 | 18 mkdir -p $fs/$path |
pascal@3056 | 19 |
pankso@15855 | 20 export src install |
pascal@3056 | 21 |
slaxemulator@9700 | 22 $wanted_stuff/list_modules.sh drivers/net/wimax net/wimax | while read module; do |
pascal@3056 | 23 dir=$path/$(dirname $module) |
pascal@3056 | 24 [ -d $fs/$dir ] || mkdir -p $fs/$dir |
pascal@15603 | 25 cp -a $install/$path/$module $fs/$dir |
pascal@3056 | 26 done |
slaxemulator@7239 | 27 |
pankso@12285 | 28 for i in $(cat $wanted_stuff/modules.list); do |
pankso@12285 | 29 if [ -f $fs/$path/$i ]; then |
pankso@12285 | 30 rm -f $fs/$path/$i |
slaxemulator@7239 | 31 fi |
slaxemulator@7239 | 32 done |
pascal@3056 | 33 } |
pascal@3056 | 34 |
pascal@3056 | 35 # Post install/remove commands for Tazpkg. |
pascal@3056 | 36 post_install() |
pascal@3056 | 37 { |
pankso@15855 | 38 chroot "$root/" depmod -a $VERSION-slitaz |
pascal@3056 | 39 } |
pascal@3056 | 40 |
pascal@3056 | 41 post_remove() |
pascal@3056 | 42 { |
pankso@15855 | 43 chroot "$root/" depmod -a $VERSION-slitaz |
pascal@3056 | 44 } |
pascal@3056 | 45 |