wok annotate linux64-btrfs/receipt @ rev 17032

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