wok-backports diff linux-toshiba/receipt @ rev 9

wbar2:Fix config
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sat Dec 21 22:46:17 2013 +0100 (2013-12-21)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/linux-toshiba/receipt	Sat Dec 21 22:46:17 2013 +0100
     1.3 @@ -0,0 +1,39 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="linux-toshiba"
     1.7 +VERSION="3.2.53"
     1.8 +BASEVER="${VERSION:0:3}"
     1.9 +CATEGORY="base-system"
    1.10 +SHORT_DESC="The Linux kernel toshiba module."
    1.11 +MAINTAINER="devel@slitaz.org"
    1.12 +LICENSE="GPL2"
    1.13 +DEPENDS="linux"
    1.14 +WANTED="linux"
    1.15 +WEB_SITE="http://www.kernel.org/"
    1.16 +
    1.17 +# Modules paths and list
    1.18 +MOD_PATH="lib/modules/$BASEVER-slitaz/kernel"
    1.19 +MODULES="drivers/char/toshiba.ko.xz"
    1.20 +
    1.21 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.22 +genpkg_rules()
    1.23 +{
    1.24 +	mkdir -p ${fs}/${MOD_PATH}
    1.25 +	for module in $MODULES
    1.26 +	do
    1.27 +		dir=$MOD_PATH/$(dirname $module)
    1.28 +		[ -d $fs/$dir ] || mkdir -p $fs/$dir
    1.29 +		cp -a $install/$MOD_PATH/$module $fs/$dir
    1.30 +	done
    1.31 +}
    1.32 +
    1.33 +# Post install/remove commands for Tazpkg.
    1.34 +post_install()
    1.35 +{
    1.36 +	chroot "$1/" depmod -a $BASEVER-slitaz
    1.37 +}
    1.38 +
    1.39 +post_remove()
    1.40 +{
    1.41 +	chroot "$1/" depmod -a $BASEVER-slitaz
    1.42 +}