wok-next annotate linux-bluetooth/receipt @ rev 19132
pcmanfm: add tazpkg-get action
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Sun May 15 02:07:14 2016 +0200 (2016-05-15) |
parents | db5b03f42dd9 |
children | 58fd2812d1bf |
rev | line source |
---|---|
pascal@886 | 1 # SliTaz package receipt. |
pascal@886 | 2 |
pascal@886 | 3 PACKAGE="linux-bluetooth" |
pascal@18296 | 4 VERSION="3.2.71" |
pascal@886 | 5 CATEGORY="base-system" |
pascal@886 | 6 SHORT_DESC="The Linux kernel bluetooth modules." |
pankso@3864 | 7 MAINTAINER="devel@slitaz.org" |
pascal@14657 | 8 LICENSE="GPL2" |
pascal@2926 | 9 DEPENDS="linux" |
pascal@886 | 10 WANTED="linux" |
pascal@886 | 11 WEB_SITE="http://www.kernel.org/" |
pascal@886 | 12 |
pascal@886 | 13 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@886 | 14 genpkg_rules() |
pascal@886 | 15 { |
pascal@886 | 16 local path |
pankso@15855 | 17 path=lib/modules/$VERSION-slitaz/kernel |
pascal@886 | 18 mkdir -p $fs/$path |
pankso@15855 | 19 export src install |
slaxemulator@9700 | 20 $wanted_stuff/list_modules.sh drivers/bluetooth net/bluetooth | while read module; do |
pascal@886 | 21 dir=$path/$(dirname $module) |
pascal@886 | 22 [ -d $fs/$dir ] || mkdir -p $fs/$dir |
pascal@15603 | 23 cp -a $install/$path/$module $fs/$dir |
pascal@886 | 24 done |
slaxemulator@7239 | 25 |
pankso@12285 | 26 for i in $(cat $wanted_stuff/modules.list); do |
pankso@12285 | 27 if [ -f $fs/$path/$i ]; then |
pankso@12285 | 28 rm -f $fs/$path/$i |
slaxemulator@7239 | 29 fi |
slaxemulator@7239 | 30 done |
pascal@886 | 31 } |
pascal@886 | 32 |
pascal@886 | 33 # Post install/remove commands for Tazpkg. |
pascal@886 | 34 post_install() |
pascal@886 | 35 { |
pankso@15855 | 36 chroot "$root/" depmod -a $VERSION-slitaz |
pascal@886 | 37 } |
pascal@886 | 38 |
pascal@886 | 39 post_remove() |
pascal@886 | 40 { |
pankso@15855 | 41 chroot "$root/" depmod -a $VERSION-slitaz |
pascal@886 | 42 } |
pascal@886 | 43 |