wok-6.x annotate linux-usbip/receipt @ rev 19776
mate-system-monitor: update bdeps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Feb 21 19:42:12 2017 +0100 (2017-02-21) |
parents | 08cf996a2307 |
children | ffc20f9bd49f |
rev | line source |
---|---|
pascal@2990 | 1 # SliTaz package receipt. |
pascal@2990 | 2 |
pascal@2990 | 3 PACKAGE="linux-usbip" |
pascal@18296 | 4 VERSION="3.2.71" |
pascal@2990 | 5 CATEGORY="base-system" |
pascal@3053 | 6 SHORT_DESC="The Linux kernel usbip module." |
pankso@3864 | 7 MAINTAINER="devel@slitaz.org" |
pascal@14657 | 8 LICENSE="GPL2" |
pascal@2990 | 9 DEPENDS="linux" |
pascal@2990 | 10 WANTED="linux" |
pascal@2990 | 11 WEB_SITE="http://www.kernel.org/" |
pascal@2990 | 12 PROVIDE="usbip-module" |
pascal@2990 | 13 |
pascal@2990 | 14 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@2990 | 15 genpkg_rules() |
pascal@2990 | 16 { |
pascal@2990 | 17 local path |
pankso@15855 | 18 path=lib/modules/$VERSION-slitaz/kernel |
pascal@2990 | 19 mkdir -p $fs/$path |
pankso@15855 | 20 export src install |
slaxemulator@9700 | 21 $wanted_stuff/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@15603 | 24 cp -a $install/$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@18730 | 31 grep -qs ^${PACKAGE#*-}$ "$1/etc/filesystems" || \ |
pascal@18730 | 32 echo "${PACKAGE#*-}" >> "$1/etc/filesystems" |
pascal@18730 | 33 chroot "$1/" depmod -a $VERSION-slitaz |
pascal@2990 | 34 } |
pascal@2990 | 35 |
pascal@2990 | 36 post_remove() |
pascal@2990 | 37 { |
pascal@18730 | 38 sed -i "/^${PACKAGE#*-}\$/d" "$1/etc/filesystems" |
pascal@18730 | 39 chroot "$1/" depmod -a $VERSION-slitaz |
pascal@2990 | 40 } |