wok annotate linux-cryptoloop/receipt @ rev 24446

updated libvpx and libvpx-dev (1.8.2 -> 1.11.0)
author Hans-G?nter Theisgen
date Mon Feb 14 15:32:45 2022 +0100 (2022-02-14)
parents 708b5293dd29
children
rev   line source
pascal@886 1 # SliTaz package receipt.
pascal@886 2
pascal@886 3 PACKAGE="linux-cryptoloop"
pascal@20261 4 VERSION="3.16.55"
pascal@886 5 CATEGORY="base-system"
pascal@886 6 SHORT_DESC="The Linux kernel cryptoloop modules."
pankso@3864 7 MAINTAINER="devel@slitaz.org"
pascal@14657 8 LICENSE="GPL2"
slaxemulator@7237 9 DEPENDS="linux-crypto"
pascal@886 10 WANTED="linux"
pascal@20421 11 WEB_SITE="https://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
pascal@12638 20 $wanted_stuff/list_modules.sh drivers/block/cryptoloop.ko.xz | \
pascal@886 21 while read module; do
pascal@886 22 dir=$path/$(dirname $module)
pascal@886 23 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@15603 24 cp -a $install/$path/$module $fs/$dir
pascal@886 25 done
pascal@886 26 }
pascal@886 27
pascal@886 28 # Post install/remove commands for Tazpkg.
pascal@886 29 post_install()
pascal@886 30 {
pankso@15855 31 chroot "$root/" depmod -a $VERSION-slitaz
pascal@886 32 }
pascal@886 33
pascal@886 34 post_remove()
pascal@886 35 {
pankso@15855 36 chroot "$root/" depmod -a $VERSION-slitaz
pascal@886 37 }
pascal@886 38