Trigger rebuild for Python 3.10 and fix PKGBUILD

Thanks to @yochananmarqos for suggesting PKGBUILD changes
This commit is contained in:
Manuel 2021-12-13 12:45:04 +01:00
parent 080c776289
commit bf2e2cd789
Signed by: SunRed
GPG Key ID: 4085037435E1F07A
2 changed files with 12 additions and 7 deletions

View File

@ -1,7 +1,7 @@
pkgbase = tuned
pkgdesc = Daemon that performs monitoring and adaptive configuration of devices in the system
pkgver = 2.16.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.16.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}"
@ -18,14 +18,19 @@ install="${pkgname}.install"
source=("https://github.com/redhat-performance/${pkgname}/archive/v${pkgver}.tar.gz")
sha256sums=('7f0b858c35fb9695703f04177af074555de59a7a3e94ec0b7e28357584d4502d')
prepare() {
cd "${pkgname}-${pkgver}"
mv libexec lib
sed -i 's/libexec/lib/g' Makefile
sed -i 's/sbin/bin/g' Makefile
}
package() {
cd "${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
rm -r "${pkgdir}"/{run,var}
mv "${pkgdir}"/usr/sbin/* "${pkgdir}"/usr/bin/
mv "${pkgdir}"/usr/libexec/tuned/* "${pkgdir}"/usr/lib/tuned/
rm -r "${pkgdir}"/run "${pkgdir}"/usr/sbin "${pkgdir}"/usr/libexec
install -Dm644 "${srcdir}/${pkgname}-${pkgver}/tuned.service" "${pkgdir}/usr/lib/systemd/system/tuned.service"
install -Dm644 tuned.service "${pkgdir}/usr/lib/systemd/system/"
}