wok annotate linux-usbip/receipt @ rev 2990

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