wok annotate linux64-aoe/receipt @ rev 16324

connman-ui: set a meaningful name to the source for mirror:/source/packages-cooking/
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 10 11:04:26 2014 +0000 (2014-04-10)
parents eb689de65d7e
children 962f1c89c58a
rev   line source
pascal@13589 1 # SliTaz package receipt.
pascal@13589 2
pascal@13589 3 PACKAGE="linux64-aoe"
pascal@15670 4 VERSION="3.2.53"
pascal@13589 5 CATEGORY="base-system"
pascal@13589 6 SHORT_DESC="The Linux kernel ATA over Ethernet modules."
pascal@13589 7 MAINTAINER="devel@slitaz.org"
pascal@14657 8 LICENSE="GPL2"
pascal@13589 9 DEPENDS="linux64"
pascal@13589 10 WANTED="linux"
pascal@13589 11 PROVIDE="linux-aoe"
pascal@13589 12 WEB_SITE="http://www.kernel.org/"
pascal@13589 13
pascal@13589 14 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@13589 15 genpkg_rules()
pascal@13589 16 {
pascal@13589 17 local path
pascal@15603 18 _pkg=$install/linux64
pankso@15866 19 path=lib/modules/$VERSION-slitaz/kernel
pascal@13589 20 mkdir -p $fs/$path
pascal@13589 21 export src
pascal@13589 22 export _pkg
pascal@13589 23 $wanted_stuff/list_modules.sh drivers/block/aoe/aoe.ko.xz | \
pascal@13589 24 while read module; do
pascal@13589 25 dir=$path/$(dirname $module)
pascal@13589 26 [ -d $fs/$dir ] || mkdir -p $fs/$dir
pascal@15610 27 cp -a $_pkg/$path/$module $fs/$dir
pascal@13589 28 done
pascal@13589 29 }
pascal@13589 30
pascal@13589 31 # Post install/remove commands for Tazpkg.
pascal@13589 32 post_install()
pascal@13589 33 {
pankso@15866 34 chroot "$root/" depmod -a $VERSION-slitaz
pascal@13589 35 }
pascal@13589 36
pascal@13589 37 post_remove()
pascal@13589 38 {
pankso@15866 39 chroot "$root/" depmod -a $VERSION-slitaz
pascal@13589 40 }
pascal@13589 41