wok-next diff linux-firewire/receipt @ rev 19594
Up slitaz-base-files (323)
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sat Jan 21 16:55:27 2017 +0200 (2017-01-21) |
parents | 08cf996a2307 |
children | 960a052d15d3 |
line diff
1.1 --- a/linux-firewire/receipt Mon Aug 17 11:03:13 2015 +0200 1.2 +++ b/linux-firewire/receipt Sat Jan 21 16:55:27 2017 +0200 1.3 @@ -1,37 +1,19 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="linux-firewire" 1.7 -VERSION="3.2.71" 1.8 +VERSION="4.9.0" 1.9 CATEGORY="base-system" 1.10 -SHORT_DESC="The Linux kernel firewire modules." 1.11 +SHORT_DESC="The Linux Kernel Firewire modules" 1.12 MAINTAINER="devel@slitaz.org" 1.13 LICENSE="GPL2" 1.14 +WEB_SITE="https://www.kernel.org/" 1.15 + 1.16 +WANTED="linux" 1.17 DEPENDS="linux" 1.18 -WANTED="linux" 1.19 -WEB_SITE="http://www.kernel.org/" 1.20 1.21 # Rules to gen a SliTaz package suitable for Tazpkg. 1.22 genpkg_rules() 1.23 { 1.24 - local path 1.25 - path=lib/modules/$VERSION-slitaz/kernel 1.26 - mkdir -p $fs/$path 1.27 - export src install 1.28 - $wanted_stuff/list_modules.sh drivers/firewire | while read module; do 1.29 - dir=$path/$(dirname $module) 1.30 - [ -d $fs/$dir ] || mkdir -p $fs/$dir 1.31 - cp -a $install/$path/$module $fs/$dir 1.32 - done 1.33 + . $wanted_stuff/copy_modules.sh 1.34 + copy_modules drivers/firewire 1.35 } 1.36 - 1.37 -# Post install/remove commands for Tazpkg. 1.38 -post_install() 1.39 -{ 1.40 - chroot "$root/" depmod -a $VERSION-slitaz 1.41 -} 1.42 - 1.43 -post_remove() 1.44 -{ 1.45 - chroot "$root/" depmod -a $VERSION-slitaz 1.46 -} 1.47 -