wok annotate linux-nfsd/receipt @ rev 23700

updated tintin++ (2.01.91 -> 2.02.02)
author Hans-G?nter Theisgen
date Tue Apr 28 08:45:18 2020 +0100 (2020-04-28)
parents 708b5293dd29
children
rev   line source
pascal@7286 1 # SliTaz package receipt.
pascal@7286 2
pascal@7286 3 PACKAGE="linux-nfsd"
pascal@20261 4 VERSION="3.16.55"
pascal@7286 5 CATEGORY="base-system"
pascal@7286 6 SHORT_DESC="The Linux kernel NFS server module."
pascal@7286 7 MAINTAINER="devel@slitaz.org"
pascal@14657 8 LICENSE="GPL2"
pascal@7286 9 DEPENDS="linux"
pascal@7286 10 WANTED="linux"
pascal@20421 11 WEB_SITE="https://www.kernel.org/"
pascal@7286 12 CONFIG_FILES="/etc/filesystems"
pascal@7286 13
pascal@7286 14 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@7286 15 genpkg_rules()
pascal@7286 16 {
pascal@7286 17 local path
pankso@15855 18 path=lib/modules/$VERSION-slitaz/kernel
pascal@7286 19 mkdir -p $fs/$path $fs/etc
pankso@15855 20 export src install
slaxemulator@9700 21 $wanted_stuff/list_modules.sh fs/nfsd | while read module; do
pascal@7286 22 dir=$path/$(dirname $module)
pascal@7286 23 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@15603 24 cp -a $install/$path/$module $fs/$dir
pascal@7286 25 done
pascal@7286 26 touch $fs/etc/filesystems
pascal@7286 27 }
pascal@7286 28
pascal@7286 29 # Post install/remove commands for Tazpkg.
pascal@7286 30 post_install()
pascal@7286 31 {
pascal@18730 32 grep -qs ^${PACKAGE#*-}$ "$1/etc/filesystems" || \
pascal@18730 33 echo "${PACKAGE#*-}" >> "$1/etc/filesystems"
pascal@18730 34 chroot "$1/" depmod -a $VERSION-slitaz
pascal@7286 35 }
pascal@7286 36
pascal@7286 37 post_remove()
pascal@7286 38 {
pascal@18730 39 sed -i "/^${PACKAGE#*-}\$/d" "$1/etc/filesystems"
pascal@18730 40 chroot "$1/" depmod -a $VERSION-slitaz
pascal@7286 41 }