wok-current annotate linux-sound/receipt @ rev 25702
Up git (CVE-2024-32002,CVE-2024-32004,CVE-2024-32020,CVE-2024-32021,CVE-2024-32465), gdk-pixbuf CVE-2022-48622, up linux 5.10.217
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Mon May 20 11:38:26 2024 +0000 (8 months ago) |
parents | bf7fc7b1447c |
children | 5926178cd6fa |
rev | line source |
---|---|
pascal@521 | 1 # SliTaz package receipt. |
pascal@521 | 2 |
pascal@521 | 3 PACKAGE="linux-sound" |
shann@25702 | 4 VERSION="5.10.217" |
pascal@521 | 5 CATEGORY="base-system" |
pascal@521 | 6 SHORT_DESC="The Linux kernel sound modules." |
pankso@3864 | 7 MAINTAINER="devel@slitaz.org" |
pascal@14657 | 8 LICENSE="GPL2" |
pascal@2926 | 9 DEPENDS="linux" |
pascal@521 | 10 WANTED="linux" |
pascal@20421 | 11 WEB_SITE="https://www.kernel.org/" |
pascal@521 | 12 |
pascal@521 | 13 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@521 | 14 genpkg_rules() |
pascal@521 | 15 { |
pascal@521 | 16 local path |
pankso@15855 | 17 path=lib/modules/$VERSION-slitaz/kernel |
pascal@521 | 18 mkdir -p $fs/$path |
pankso@15855 | 19 export src install |
slaxemulator@9700 | 20 $wanted_stuff/list_modules.sh sound | 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 |
pankso@15855 | 25 |
pankso@15855 | 26 # Firmware |
pascal@2990 | 27 mkdir $fs/lib/firmware |
pascal@2990 | 28 for i in ess korg sun yamaha; do |
shann@25668 | 29 cp -a $WOK/firmware/install/lib/firmware/$i \ |
shann@25668 | 30 $fs/lib/firmware |
pascal@2990 | 31 done |
pascal@521 | 32 |
pankso@12285 | 33 for i in $(cat $wanted_stuff/modules.list); do |
pankso@12285 | 34 if [ -f $fs/$path/$i ]; then |
pankso@15855 | 35 rm -f $fs/$path/$i |
pankso@15855 | 36 fi |
slaxemulator@7240 | 37 done |
slaxemulator@7240 | 38 |
pascal@521 | 39 } |
pascal@521 | 40 |
pascal@521 | 41 # Post install/remove commands for Tazpkg. |
pascal@521 | 42 post_install() |
pascal@521 | 43 { |
pankso@15855 | 44 chroot "$root/" depmod -a $VERSION-slitaz |
pascal@521 | 45 } |
pascal@521 | 46 |
pascal@521 | 47 post_remove() |
pascal@521 | 48 { |
pankso@15855 | 49 chroot "$root/" depmod -a $VERSION-slitaz |
pascal@521 | 50 } |
pascal@521 | 51 |