# SliTaz package receipt. PACKAGE="linux64-radio" VERSION="4.19.294" CATEGORY="base-system" SHORT_DESC="The Linux kernel radio modules." MAINTAINER="slaxemulator@gmail.com" LICENSE="GPL2" WANTED="linux" WEB_SITE="http://kernel.org/" DEPENDS="linux64" PROVIDE="linux-radio:linux64" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { local path src=$WOK/linux64/source/tmp install=$install/linux64 path=lib/modules/$VERSION-slitaz64/kernel mkdir -p $fs/$path export src export install $wanted_stuff/list_modules.sh drivers/media/radio | while read module; do dir=$path/$(dirname $module) [ -d $fs/$dir ] || mkdir -p $fs/$dir cp -a $install/$path/$module $fs/$dir done for i in $(cat $wanted_stuff/modules.list); do if [ -f $fs/$path/$i ]; then rm -f $fs/$path/$i fi done } # Post install/remove commands for Tazpkg. post_install() { chroot "$root/" depmod -a $VERSION-slitaz64 } post_remove() { chroot "$root/" depmod -a $VERSION-slitaz64 }