wok annotate linux-cifs/receipt @ rev 23770

created recipes for xorg-libXfont2 and xorg-libXfont2-dev
author Hans-G?nter Theisgen
date Fri May 15 07:18:58 2020 +0100 (2020-05-15)
parents 708b5293dd29
children
rev   line source
pascal@961 1 # SliTaz package receipt.
pascal@961 2
pascal@961 3 PACKAGE="linux-cifs"
pascal@20261 4 VERSION="3.16.55"
pascal@961 5 CATEGORY="base-system"
pascal@961 6 SHORT_DESC="The Linux kernel cifs module."
pankso@3864 7 MAINTAINER="devel@slitaz.org"
pascal@14657 8 LICENSE="GPL2"
pascal@2926 9 DEPENDS="linux"
pascal@961 10 WANTED="linux"
pascal@20421 11 WEB_SITE="https://www.kernel.org/"
pascal@2562 12 CONFIG_FILES="/etc/filesystems"
pascal@961 13
pascal@961 14 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@961 15 genpkg_rules()
pascal@961 16 {
pascal@961 17 local path
pankso@15855 18 path=lib/modules/$VERSION-slitaz/kernel
pascal@2562 19 mkdir -p $fs/$path $fs/etc
pankso@15855 20 export src install
slaxemulator@9700 21 $wanted_stuff/list_modules.sh fs/cifs | while read module; do
pascal@961 22 dir=$path/$(dirname $module)
pascal@961 23 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@15603 24 cp -a $install/$path/$module $fs/$dir
pascal@961 25 done
pascal@2562 26 touch $fs/etc/filesystems
pascal@961 27 }
pascal@961 28
pascal@961 29 # Post install/remove commands for Tazpkg.
pascal@961 30 post_install()
pascal@961 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@961 35 }
pascal@961 36
pascal@961 37 post_remove()
pascal@961 38 {
pascal@18730 39 sed -i "/^${PACKAGE#*-}\$/d" "$1/etc/filesystems"
pascal@18730 40 chroot "$1/" depmod -a $VERSION-slitaz
pascal@961 41 }