wok annotate linux64-btrfs/receipt @ rev 15016

quesoglc: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 11 14:38:21 2013 +0000 (2013-08-11)
parents ad59999b3fce
children 051931e905b0
rev   line source
pascal@12306 1 # SliTaz package receipt.
pascal@12306 2
pascal@12306 3 PACKAGE="linux64-btrfs"
pascal@14175 4 VERSION="3.2.40"
pascal@12306 5 BASEVER="${VERSION:0:3}"
pascal@12306 6 CATEGORY="base-system"
pascal@12306 7 SHORT_DESC="The Linux kernel btrfs module."
pascal@12306 8 MAINTAINER="devel@slitaz.org"
pascal@14657 9 LICENSE="GPL2"
pascal@12306 10 DEPENDS="linux64"
pascal@12306 11 WANTED="linux"
pascal@12306 12 PROVIDE="linux-btrfs"
pascal@12306 13 WEB_SITE="http://www.kernel.org/"
pascal@12306 14 CONFIG_FILES="/etc/filesystems"
pascal@12306 15
pascal@12306 16 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@12306 17 genpkg_rules()
pascal@12306 18 {
pascal@12306 19 local path
pascal@12306 20 _pkg=$_pkg/linux64
pascal@12306 21 path=lib/modules/$BASEVER-slitaz/kernel
pascal@12306 22 mkdir -p $fs/$path $fs/etc
pascal@12306 23 export src
pascal@12306 24 export _pkg
pascal@12306 25 $wanted_stuff/list_modules.sh fs/${PACKAGE#*-} | while read module; do
pascal@12306 26 dir=$path/$(dirname $module)
pascal@12306 27 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@12306 28 cp -a $_pkg/$path/$module $fs/$dir
pascal@12306 29 done
pascal@12306 30 touch $fs/etc/filesystems
pascal@12306 31
pascal@14659 32 for i in $(cat $wanted_stuff/modules*.list); do
pascal@12306 33 if [ $fs/lib/modules/$VERSION-slitaz/kernel/$i ]; then
pascal@12306 34 rm -f $fs/lib/modules/$VERSION-slitaz/kernel/$i
pascal@12306 35 fi
pascal@12306 36 done
pascal@12306 37 }
pascal@12306 38
pascal@12306 39 # Post install/remove commands for Tazpkg.
pascal@12306 40 post_install()
pascal@12306 41 {
pascal@12306 42 grep -qs ^${PACKAGE#*-}$ $1/etc/filesystems || \
pascal@12306 43 echo "${PACKAGE#*-}" >> $1/etc/filesystems
pascal@12306 44 chroot "$1/" depmod -a $BASEVER-slitaz
pascal@12306 45 }
pascal@12306 46
pascal@12306 47 post_remove()
pascal@12306 48 {
pascal@12306 49 sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems
pascal@12306 50 chroot "$1/" depmod -a $BASEVER-slitaz
pascal@12306 51 }
pascal@12306 52