2020-06-26 16:11:15 +02:00
|
|
|
# Maintainer: Manuel Hüsers <aur@huesers.de>
|
2017-03-12 00:10:41 +01:00
|
|
|
# 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
|
2024-02-17 09:45:14 +01:00
|
|
|
pkgver=2.22.0
|
2024-02-21 19:25:35 +01:00
|
|
|
pkgrel=2
|
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')
|
2024-02-21 19:25:35 +01:00
|
|
|
optdepends=('virt-what: virtual machine detection'
|
|
|
|
'systemtap: detailed system monitoring')
|
2017-12-11 17:02:21 +01:00
|
|
|
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")
|
2024-02-17 09:45:14 +01:00
|
|
|
sha512sums=('653f946e8eff57eaa7e26b05c9215d60c8dcec6760b4a41a2855328e86b65f4dcbc0b2fd7d9f9355d00aae93f601c035a38d4e1611f30cb5003b417e31bea4dc')
|
2015-06-09 12:18:12 +02:00
|
|
|
|
2021-12-13 12:45:04 +01: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() {
|
2017-03-12 00:10:41 +01:00
|
|
|
cd "${pkgname}-${pkgver}"
|
2015-06-09 12:18:12 +02:00
|
|
|
|
2024-02-21 19:25:35 +01:00
|
|
|
make DESTDIR="${pkgdir}" install install-ppd
|
2021-12-13 12:45:04 +01:00
|
|
|
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
|
|
|
|
2021-12-13 12:45:04 +01:00
|
|
|
install -Dm644 tuned.service "${pkgdir}/usr/lib/systemd/system/"
|
2015-06-09 12:18:12 +02:00
|
|
|
}
|