wok-backports annotate linux-jfs/receipt @ rev 55

Remove ashism ==
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Feb 27 17:46:33 2019 +0100 (2019-02-27)
parents
children
rev   line source
pascal@0 1 # SliTaz package receipt.
pascal@0 2
pascal@0 3 PACKAGE="linux-jfs"
pascal@0 4 VERSION="3.2.53"
pascal@0 5 BASEVER="${VERSION:0:3}"
pascal@0 6 CATEGORY="base-system"
pascal@0 7 SHORT_DESC="The Linux kernel jfs module."
pascal@0 8 MAINTAINER="devel@slitaz.org"
pascal@0 9 LICENSE="GPL2"
pascal@0 10 DEPENDS="linux"
pascal@0 11 WANTED="linux"
pascal@0 12 WEB_SITE="http://www.kernel.org/"
pascal@0 13 CONFIG_FILES="/etc/filesystems"
pascal@0 14
pascal@0 15 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@0 16 genpkg_rules()
pascal@0 17 {
pascal@0 18 local path
pascal@0 19 path=lib/modules/$BASEVER-slitaz/kernel
pascal@0 20 mkdir -p $fs/$path $fs/etc
pascal@0 21 export src
pascal@0 22 export _pkg
pascal@0 23 $wanted_stuff/list_modules.sh fs/jfs | while read module; do
pascal@0 24 dir=$path/$(dirname $module)
pascal@0 25 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@0 26 cp -a $install/$path/$module $fs/$dir
pascal@0 27 done
pascal@0 28 touch $fs/etc/filesystems
pascal@0 29 }
pascal@0 30
pascal@0 31 # Post install/remove commands for Tazpkg.
pascal@0 32 post_install()
pascal@0 33 {
pascal@0 34 grep -qs ^${PACKAGE#*-}$ $1/etc/filesystems || \
pascal@0 35 echo "${PACKAGE#*-}" >> $1/etc/filesystems
pascal@0 36 chroot "$1/" depmod -a $BASEVER-slitaz
pascal@0 37 }
pascal@0 38
pascal@0 39 post_remove()
pascal@0 40 {
pascal@0 41 sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems
pascal@0 42 chroot "$1/" depmod -a $BASEVER-slitaz
pascal@0 43 }