wok-next annotate linux-cpufreq/receipt @ rev 1531
Add zsh (from Sandeep Srinivasa)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Oct 09 15:00:42 2008 +0000 (2008-10-09) |
parents | |
children | f306d126580e |
rev | line source |
---|---|
pascal@984 | 1 # SliTaz package receipt. |
pascal@984 | 2 |
pascal@984 | 3 PACKAGE="linux-cpufreq" |
pascal@984 | 4 VERSION="2.6.25.5" |
pascal@984 | 5 CATEGORY="base-system" |
pascal@984 | 6 SHORT_DESC="The Linux kernel cpufreq modules." |
pascal@984 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@984 | 8 WANTED="linux" |
pascal@984 | 9 WEB_SITE="http://www.kernel.org/" |
pascal@984 | 10 |
pascal@984 | 11 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@984 | 12 genpkg_rules() |
pascal@984 | 13 { |
pascal@984 | 14 local path |
pascal@984 | 15 path=lib/modules/$VERSION-slitaz/kernel |
pascal@984 | 16 mkdir -p $fs/$path |
pascal@984 | 17 export src |
pascal@984 | 18 export _pkg |
pascal@984 | 19 $src/list_modules.sh arch/x86/kernel/cpu/cpufreq drivers/cpufreq | \ |
pascal@984 | 20 while read module; do |
pascal@984 | 21 dir=$path/$(dirname $module) |
pascal@984 | 22 [ -d $fs/$dir ] || mkdir -p $fs/$dir |
pascal@984 | 23 cp -a $_pkg/$path/$module $fs/$dir |
pascal@984 | 24 done |
pascal@984 | 25 } |
pascal@984 | 26 |
pascal@984 | 27 # Post install/remove commands for Tazpkg. |
pascal@984 | 28 post_install() |
pascal@984 | 29 { |
pascal@984 | 30 depmod -a -b "$1/" $VERSION-slitaz |
pascal@984 | 31 } |
pascal@984 | 32 |
pascal@984 | 33 post_remove() |
pascal@984 | 34 { |
pascal@984 | 35 depmod -a $VERSION-slitaz |
pascal@984 | 36 } |
pascal@984 | 37 |