Add missing python3 pycs

This commit is contained in:
Manuel 2022-07-04 17:12:47 +02:00
parent 42f0040946
commit 2fdf17d6e1
Signed by: SunRed
GPG Key ID: 4085037435E1F07A
2 changed files with 5 additions and 2 deletions

View File

@ -1,7 +1,7 @@
pkgbase = tuned
pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system
pkgver = 2.18.0
pkgrel = 1
pkgrel = 2
url = https://github.com/redhat-performance/tuned
install = tuned.install
arch = any

View File

@ -5,7 +5,7 @@
pkgname=tuned
pkgver=2.18.0
pkgrel=1
pkgrel=2
pkgdesc='Daemon that performs monitoring and adaptive configuration of devices in the system'
arch=('any')
url="https://github.com/redhat-performance/${pkgname}"
@ -32,5 +32,8 @@ package() {
make DESTDIR="${pkgdir}" install
rm -r "${pkgdir}"/{run,var}
python -m compileall -d /usr/lib "$pkgdir/usr/lib"
python -O -m compileall -d /usr/lib "$pkgdir/usr/lib"
install -Dm644 tuned.service "${pkgdir}/usr/lib/systemd/system/"
}