wok annotate linux64-aoe/receipt @ rev 17064
qt4-base: category=meta (empty package error), and try again to use link
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Thu Aug 21 23:48:43 2014 +0200 (2014-08-21) |
parents | 765487dd22da |
children | 4ad2325946cd |
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@17031 | 11 PROVIDE="linux-aoe:linux64" |
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@16657 | 18 install=$install/linux64 |
pascal@17028 | 19 path=lib/modules/$VERSION-slitaz64/kernel |
pascal@13589 | 20 mkdir -p $fs/$path |
pascal@13589 | 21 export src |
pascal@16657 | 22 export install |
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@16657 | 27 cp -a $install/$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 { |
pascal@17032 | 34 chroot "$root/" depmod -a $VERSION-slitaz64 |
pascal@13589 | 35 } |
pascal@13589 | 36 |
pascal@13589 | 37 post_remove() |
pascal@13589 | 38 { |
pascal@17032 | 39 chroot "$root/" depmod -a $VERSION-slitaz64 |
pascal@13589 | 40 } |
pascal@13589 | 41 |