community/linux-tools to 3.7-5

This commit is contained in:
Kevin Mihelich 2013-01-26 20:29:24 +00:00
parent e83e2707c7
commit e6c1f2962f
2 changed files with 15 additions and 1 deletions

View file

@ -7,7 +7,7 @@
pkgbase=linux-tools
pkgname=('libtraceevent' 'perf' 'cpupower' 'usbip')
pkgver=3.7
pkgrel=4
pkgrel=5
license=('GPL2')
arch=('i686' 'x86_64')
url='http://www.kernel.org'
@ -112,6 +112,7 @@ package_cpupower() {
depends=('bash' 'pciutils')
conflicts=('cpufrequtils')
replaces=('cpufrequtils')
install=cpupower.install
pushd linux-$pkgver/tools/power/cpupower
make \

View file

@ -0,0 +1,13 @@
#!/bin/sh
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
if [ "$(vercmp $2 3.7-4)" -le 0 ]; then
cat << EOF
===> cpupower startup config file moved to /etc/default/cpupower
EOF
fi
}
# vim:set ts=2 sw=2 ft=sh et: