2012-12-15 02:14:36 +00:00
|
|
|
# $Id$
|
2013-02-19 20:07:36 +00:00
|
|
|
# Maintainer: Sébastien Luttringer
|
2012-07-23 23:25:09 +00:00
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - removed x86_energy_perf_policy build/package, uses x86 asm
|
|
|
|
|
|
|
|
pkgbase=linux-tools
|
2013-02-19 20:07:36 +00:00
|
|
|
pkgname=('linux-tools-meta'
|
|
|
|
'libtraceevent'
|
|
|
|
'perf'
|
|
|
|
'cpupower'
|
|
|
|
'usbip')
|
2013-04-30 20:52:52 +00:00
|
|
|
pkgver=3.9
|
2013-02-19 20:07:36 +00:00
|
|
|
pkgrel=1
|
2012-07-23 23:25:09 +00:00
|
|
|
license=('GPL2')
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url='http://www.kernel.org'
|
|
|
|
options=('!strip')
|
|
|
|
# split packages need all package dependencies set manually in makedepends
|
2012-08-09 13:40:15 +00:00
|
|
|
# kernel source deps
|
|
|
|
makedepends=('asciidoc' 'xmlto')
|
|
|
|
# perf deps
|
2012-12-15 02:14:36 +00:00
|
|
|
makedepends+=('perl' 'python2' 'libnewt' 'elfutils' 'audit' 'libunwind')
|
2012-08-09 13:40:15 +00:00
|
|
|
# cpupower deps
|
|
|
|
makedepends+=('pciutils')
|
|
|
|
# usbip deps
|
|
|
|
makedepends+=('glib2' 'sysfsutils')
|
|
|
|
groups=("$pkgbase")
|
2012-07-23 23:25:09 +00:00
|
|
|
source=("http://ftp.kernel.org/pub/linux/kernel/v3.x/linux-$pkgver.tar.xz"
|
2013-02-19 20:07:36 +00:00
|
|
|
# "http://ftp.kernel.org/pub/linux/kernel/v3.x/patch-$pkgver.6.xz"
|
|
|
|
'cpupower.default'
|
2012-08-07 16:11:48 +00:00
|
|
|
'cpupower.systemd'
|
2012-08-09 13:40:15 +00:00
|
|
|
'cpupower.service'
|
|
|
|
'usbipd.service')
|
2013-04-30 20:52:52 +00:00
|
|
|
sha256sums=('60bc3e64ee5dc778de2cd7cd7640abf518a4c9d4f31b8ed624e16fad53f54541'
|
2013-02-19 20:07:36 +00:00
|
|
|
'4fa509949d6863d001075fa3e8671eff2599c046d20c98bb4a70778595cd1c3f'
|
|
|
|
'fbf6e0ce6eb0ef15703fe212958de6ca46e62188900b5e9f9272ed3cc9cfd54e'
|
|
|
|
'a89284d0ecb556ca53a66d1c2087b5fd6d0a901ab2769cd3aebb93f4478905dc'
|
|
|
|
'8053a6bcd0776a7fefccc5012f93a1710653529e0eab59afcc39f24361c64869')
|
2012-07-23 23:25:09 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
# apply stable patching set
|
|
|
|
if (( NOEXTRACT == 0 )) && [[ -e "$srcdir"/patch-* ]]; then
|
|
|
|
msg2 'Applying stable patch set'
|
|
|
|
patch -N -p1 -i "$srcdir"/patch-*
|
|
|
|
fi
|
|
|
|
|
2012-12-15 02:14:36 +00:00
|
|
|
msg2 'Build libtraceevent'
|
|
|
|
pushd linux-$pkgver/tools/lib/traceevent
|
|
|
|
make
|
|
|
|
popd
|
|
|
|
|
2012-07-23 23:25:09 +00:00
|
|
|
msg2 'Build perf'
|
|
|
|
pushd linux-$pkgver/tools/perf
|
|
|
|
make \
|
|
|
|
WERROR=0 \
|
|
|
|
DESTDIR="$pkgdir/usr" \
|
|
|
|
perfexecdir='lib/perf' \
|
|
|
|
PYTHON=python2 \
|
|
|
|
NO_GTK2=1 \
|
|
|
|
PERF_VERSION=$pkgver-$pkgrel \
|
|
|
|
all man
|
|
|
|
popd
|
|
|
|
|
|
|
|
msg2 'Build cpupower'
|
|
|
|
pushd linux-$pkgver/tools/power/cpupower
|
|
|
|
# we cannot use --as-needed
|
|
|
|
LDFLAGS=${LDFLAGS:+"$LDFLAGS,--no-as-needed"}
|
|
|
|
make VERSION=$pkgver-$pkgrel
|
|
|
|
popd
|
2012-08-09 13:40:15 +00:00
|
|
|
|
|
|
|
msg2 'Build usbip'
|
|
|
|
pushd linux-$pkgver/drivers/staging/usbip/userspace
|
2012-12-15 02:14:36 +00:00
|
|
|
# fix missing man page
|
|
|
|
sed -i 's/usbip_bind_driver.8//' Makefile.am
|
2012-08-09 13:40:15 +00:00
|
|
|
./autogen.sh
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
|
|
popd
|
2012-07-23 23:25:09 +00:00
|
|
|
}
|
|
|
|
|
2013-02-05 16:24:00 +00:00
|
|
|
package_linux-tools-meta() {
|
|
|
|
pkgdesc='Linux kernel tools meta package'
|
|
|
|
groups=()
|
2013-02-19 20:07:36 +00:00
|
|
|
depends=('libtraceevent' 'perf' 'cpupower' 'usbip')
|
2013-02-05 16:24:00 +00:00
|
|
|
}
|
|
|
|
|
2012-12-15 02:14:36 +00:00
|
|
|
package_libtraceevent() {
|
|
|
|
pkgdesc='Linux kernel trace event library'
|
2012-12-19 05:09:53 +00:00
|
|
|
depends=('glibc')
|
2012-12-15 02:14:36 +00:00
|
|
|
|
|
|
|
cd linux-$pkgver/tools/lib/traceevent
|
|
|
|
install -dm 755 "$pkgdir/usr/lib"
|
|
|
|
install -m 644 libtraceevent.a libtraceevent.so "$pkgdir/usr/lib"
|
|
|
|
}
|
|
|
|
|
2012-07-23 23:25:09 +00:00
|
|
|
package_perf() {
|
|
|
|
pkgdesc='Linux kernel performance auditing tool'
|
2013-01-24 19:06:55 +00:00
|
|
|
depends=('perl' 'python2' 'libnewt' 'elfutils' 'audit' 'libunwind' 'binutils')
|
2012-07-23 23:25:09 +00:00
|
|
|
|
|
|
|
cd linux-$pkgver/tools/perf
|
|
|
|
make \
|
|
|
|
WERROR=0 \
|
|
|
|
DESTDIR="$pkgdir/usr" \
|
|
|
|
perfexecdir='lib/perf' \
|
|
|
|
PYTHON=python2 \
|
|
|
|
NO_GTK2=1 \
|
|
|
|
PERF_VERSION=$pkgver-$pkgrel \
|
|
|
|
install install-man
|
2013-02-05 16:24:00 +00:00
|
|
|
# move completion in new directory
|
|
|
|
cd "$pkgdir"
|
|
|
|
install -Dm644 usr/etc/bash_completion.d/perf usr/share/bash-completion/perf
|
|
|
|
rm -r usr/etc
|
2012-07-23 23:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package_cpupower() {
|
|
|
|
pkgdesc='Linux kernel tool to examine and tune power saving related features of your processor'
|
2013-02-19 20:07:36 +00:00
|
|
|
backup=('etc/default/cpupower')
|
2012-08-09 13:40:15 +00:00
|
|
|
depends=('bash' 'pciutils')
|
2012-07-23 23:25:09 +00:00
|
|
|
conflicts=('cpufrequtils')
|
2012-10-01 12:41:07 +00:00
|
|
|
replaces=('cpufrequtils')
|
2013-01-26 20:29:24 +00:00
|
|
|
install=cpupower.install
|
2012-07-23 23:25:09 +00:00
|
|
|
|
|
|
|
pushd linux-$pkgver/tools/power/cpupower
|
|
|
|
make \
|
|
|
|
DESTDIR="$pkgdir" \
|
|
|
|
mandir='/usr/share/man' \
|
|
|
|
docdir='/usr/share/doc/cpupower' \
|
|
|
|
install install-man
|
|
|
|
popd
|
2012-08-23 12:33:46 +00:00
|
|
|
# install startup scripts
|
2013-02-19 20:07:36 +00:00
|
|
|
install -Dm 644 $pkgname.default "$pkgdir/etc/default/$pkgname"
|
2012-08-07 16:11:48 +00:00
|
|
|
install -Dm 644 $pkgname.service "$pkgdir/usr/lib/systemd/system/$pkgname.service"
|
|
|
|
install -Dm 755 $pkgname.systemd "$pkgdir/usr/lib/systemd/scripts/$pkgname"
|
2012-07-23 23:25:09 +00:00
|
|
|
}
|
2012-08-07 16:11:48 +00:00
|
|
|
|
2012-08-09 13:40:15 +00:00
|
|
|
package_usbip() {
|
|
|
|
pkgdesc='An USB device sharing system over IP network'
|
|
|
|
depends=('glib2' 'sysfsutils')
|
|
|
|
options=('!libtool')
|
|
|
|
|
|
|
|
pushd linux-$pkgver/drivers/staging/usbip/userspace
|
|
|
|
make install DESTDIR="$pkgdir"
|
|
|
|
popd
|
|
|
|
# module loading
|
|
|
|
install -Dm 644 /dev/null "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
|
|
|
|
printf 'usbip-core\nusbip-host\n' > "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
|
2013-02-19 20:07:36 +00:00
|
|
|
# systemd
|
2012-08-09 13:40:15 +00:00
|
|
|
install -Dm 644 usbipd.service "$pkgdir/usr/lib/systemd/system/usbipd.service"
|
|
|
|
}
|
|
|
|
|
2012-12-15 02:14:36 +00:00
|
|
|
# vim:set ts=2 sw=2 et:
|