arch-packages/tuned/PKGBUILD

40 lines
1.4 KiB
Bash
Raw Normal View History

2020-06-26 16:11:15 +02:00
# Maintainer: Manuel Hüsers <aur@huesers.de>
# Contributor: Iwan Timmer <irtimmer@gmail.com>
2016-01-26 13:06:42 +01:00
# Contributor: Timothée Ravier <tim at siosm dot fr>
# Contributor: Tom <reztho at archlinux dot org>
2015-06-09 12:18:12 +02:00
2016-01-26 13:06:42 +01:00
pkgname=tuned
pkgver=2.20.0
2022-08-19 23:13:11 +02:00
pkgrel=1
2015-06-09 12:18:12 +02:00
pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system'
arch=('any')
2017-12-11 16:35:58 +01:00
url="https://github.com/redhat-performance/${pkgname}"
2015-06-09 12:18:12 +02:00
license=('GPL')
2021-07-31 17:58:02 +02:00
depends=('dbus-glib' 'ethtool' 'gawk' 'hdparm' 'polkit' 'python-configobj' 'python-dbus' 'python-gobject' 'python-linux-procfs' 'python-perf' 'python-pyudev')
optdepends=('virt-what: For use with virtual machines' 'systemtap: Disk and net statistic monitoring systemtap scripts')
makedepends=('desktop-file-utils')
2015-06-09 12:18:12 +02:00
backup=('etc/tuned/active_profile')
2016-01-26 13:06:42 +01:00
install="${pkgname}.install"
2022-11-23 17:58:12 +01:00
source=("https://github.com/redhat-performance/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
sha256sums=('df32ac7a25f2c413cc39368c8cfaf1d11bf75be14efd0944ecafad8a369e486c')
2015-06-09 12:18:12 +02:00
prepare() {
cd "${pkgname}-${pkgver}"
mv libexec lib
sed -i 's/libexec/lib/g' Makefile
sed -i 's/sbin/bin/g' Makefile
}
2015-06-09 12:18:12 +02:00
package() {
cd "${pkgname}-${pkgver}"
2015-06-09 12:18:12 +02:00
make DESTDIR="${pkgdir}" install
rm -r "${pkgdir}"/{run,var}
2015-06-09 12:18:12 +02:00
2022-08-19 23:13:11 +02:00
python -m compileall -d /usr/lib "${pkgdir}/usr/lib"
python -O -m compileall -d /usr/lib "${pkgdir}/usr/lib"
2022-07-04 17:12:47 +02:00
install -Dm644 tuned.service "${pkgdir}/usr/lib/systemd/system/"
2015-06-09 12:18:12 +02:00
}