wok diff linux-sound/receipt @ rev 17224
Up tazwikiss yaff tazdev tazchroot slitaz-mercurial-style qemu-box mirror-tools (2.1.1)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Oct 15 15:56:22 2014 +0200 (2014-10-15) |
parents | eb689de65d7e |
children | 08cf996a2307 |
line diff
1.1 --- a/linux-sound/receipt Wed Dec 18 08:40:48 2013 +0000 1.2 +++ b/linux-sound/receipt Wed Oct 15 15:56:22 2014 +0200 1.3 @@ -2,7 +2,6 @@ 1.4 1.5 PACKAGE="linux-sound" 1.6 VERSION="3.2.53" 1.7 -BASEVER="${VERSION:0:3}" 1.8 CATEGORY="base-system" 1.9 SHORT_DESC="The Linux kernel sound modules." 1.10 MAINTAINER="devel@slitaz.org" 1.11 @@ -15,15 +14,16 @@ 1.12 genpkg_rules() 1.13 { 1.14 local path 1.15 - path=lib/modules/$BASEVER-slitaz/kernel 1.16 + path=lib/modules/$VERSION-slitaz/kernel 1.17 mkdir -p $fs/$path 1.18 - export src 1.19 - export _pkg 1.20 + export src install 1.21 $wanted_stuff/list_modules.sh sound | while read module; do 1.22 dir=$path/$(dirname $module) 1.23 [ -d $fs/$dir ] || mkdir -p $fs/$dir 1.24 cp -a $install/$path/$module $fs/$dir 1.25 done 1.26 + 1.27 + # Firmware 1.28 mkdir $fs/lib/firmware 1.29 for i in ess korg sun yamaha; do 1.30 cp -a $install/lib/firmware/$i $fs/lib/firmware 1.31 @@ -31,8 +31,8 @@ 1.32 1.33 for i in $(cat $wanted_stuff/modules.list); do 1.34 if [ -f $fs/$path/$i ]; then 1.35 - rm -f $fs/$path/$i 1.36 - fi 1.37 + rm -f $fs/$path/$i 1.38 + fi 1.39 done 1.40 1.41 } 1.42 @@ -40,11 +40,11 @@ 1.43 # Post install/remove commands for Tazpkg. 1.44 post_install() 1.45 { 1.46 - chroot "$1/" depmod -a $BASEVER-slitaz 1.47 + chroot "$root/" depmod -a $VERSION-slitaz 1.48 } 1.49 1.50 post_remove() 1.51 { 1.52 - chroot "$1/" depmod -a $BASEVER-slitaz 1.53 + chroot "$root/" depmod -a $VERSION-slitaz 1.54 } 1.55