wok annotate linux-memstick/receipt @ rev 23561

updated python-simplejson (2.1.1 -> 3.17.0)
author Hans-G?nter Theisgen
date Tue Apr 07 07:51:57 2020 +0100 (2020-04-07)
parents 708b5293dd29
children
rev   line source
pascal@2161 1 # SliTaz package receipt.
pascal@2161 2
pascal@2161 3 PACKAGE="linux-memstick"
pascal@20261 4 VERSION="3.16.55"
pascal@2161 5 CATEGORY="base-system"
pascal@2161 6 SHORT_DESC="The Linux kernel sony memory stick modules."
pankso@3864 7 MAINTAINER="devel@slitaz.org"
pascal@14657 8 LICENSE="GPL2"
pascal@2926 9 DEPENDS="linux"
pascal@2161 10 WANTED="linux"
pascal@20421 11 WEB_SITE="https://www.kernel.org/"
pascal@2161 12
pascal@2161 13 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2161 14 genpkg_rules()
pascal@2161 15 {
pascal@2161 16 local path
pankso@15855 17 path=lib/modules/$VERSION-slitaz/kernel
pascal@2161 18 mkdir -p $fs/$path
pascal@2161 19
pankso@15855 20 export src install
pascal@2161 21
slaxemulator@9700 22 $wanted_stuff/list_modules.sh drivers/memstick | while read module; do
pascal@2161 23 dir=$path/$(dirname $module)
pascal@2161 24 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@15603 25 cp -a $install/$path/$module $fs/$dir
pascal@2161 26 done
slaxemulator@7239 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
slaxemulator@7239 31 fi
slaxemulator@7239 32 done
pascal@2161 33 }
pascal@2161 34
pascal@2161 35 # Post install/remove commands for Tazpkg.
pascal@2161 36 post_install()
pascal@2161 37 {
pankso@15855 38 chroot "$root/" depmod -a $VERSION-slitaz
pascal@2161 39 }
pascal@2161 40
pascal@2161 41 post_remove()
pascal@2161 42 {
pankso@15855 43 chroot "$root/" depmod -a $VERSION-slitaz
pascal@2161 44 }
pascal@2161 45