wok annotate linux-exofs/receipt @ rev 18296

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