wok-6.x annotate linux-radio/receipt @ rev 19934
fix symlinks (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Apr 28 10:36:22 2017 +0200 (2017-04-28) |
parents | db5b03f42dd9 |
children | ffc20f9bd49f |
rev | line source |
---|---|
pankso@12285 | 1 # SliTaz package receipt. |
pankso@12285 | 2 |
pankso@12285 | 3 PACKAGE="linux-radio" |
pascal@18296 | 4 VERSION="3.2.71" |
pankso@12285 | 5 CATEGORY="base-system" |
pankso@12285 | 6 SHORT_DESC="The Linux kernel radio modules." |
pankso@12285 | 7 MAINTAINER="slaxemulator@gmail.com" |
pascal@14657 | 8 LICENSE="GPL2" |
pankso@12285 | 9 WANTED="linux" |
pankso@12285 | 10 WEB_SITE="http://kernel.org/" |
pankso@12285 | 11 DEPENDS="linux" |
pankso@12285 | 12 |
pankso@12285 | 13 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@12285 | 14 genpkg_rules() |
pankso@12285 | 15 { |
pankso@12285 | 16 local path |
pankso@15855 | 17 path=lib/modules/$VERSION-slitaz/kernel |
pankso@12285 | 18 mkdir -p $fs/$path |
pankso@12285 | 19 |
pankso@15855 | 20 export src install |
pankso@12285 | 21 |
pankso@12285 | 22 $wanted_stuff/list_modules.sh drivers/media/radio | while read module; do |
pankso@12285 | 23 dir=$path/$(dirname $module) |
pankso@12285 | 24 [ -d $fs/$dir ] || mkdir -p $fs/$dir |
pascal@15603 | 25 cp -a $install/$path/$module $fs/$dir |
pankso@12285 | 26 done |
pankso@12285 | 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 |
pankso@12285 | 31 fi |
pankso@12285 | 32 done |
pankso@12285 | 33 } |
pankso@12285 | 34 |
pankso@12285 | 35 |
pankso@12285 | 36 # Post install/remove commands for Tazpkg. |
pankso@12285 | 37 post_install() |
pankso@12285 | 38 { |
pankso@15855 | 39 chroot "$root/" depmod -a $VERSION-slitaz |
pankso@12285 | 40 } |
pankso@12285 | 41 |
pankso@12285 | 42 post_remove() |
pankso@12285 | 43 { |
pankso@15855 | 44 chroot "$root/" depmod -a $VERSION-slitaz |
pankso@12285 | 45 } |
pankso@12285 | 46 |