Date: Thursday, December 15, 2022 @ 15:00:44
Author: foutrelis
Revision: 464429
archrelease: copy trunk to staging-x86_64
Added:
xfce4-cpufreq-plugin/repos/staging-x86_64/
xfce4-cpufreq-plugin/repos/staging-x86_64/PKGBUILD
(from rev 464428, xfce4-cpufreq-plugin/trunk/PKGBUILD)
----------+
PKGBUILD | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
Copied: xfce4-cpufreq-plugin/repos/staging-x86_64/PKGBUILD (from rev 464428,
xfce4-cpufreq-plugin/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2022-12-15 15:00:44 UTC (rev 464429)
@@ -0,0 +1,34 @@
+# Maintainer: Evangelos Foutras <[email protected]>
+# Contributor: AndyRTR <[email protected]>
+# Contributor: tobias <tobias funnychar archlinux.org>
+
+pkgname=xfce4-cpufreq-plugin
+pkgver=1.2.8
+pkgrel=1
+pkgdesc="CPU frequency and governor plugin for the Xfce4 panel"
+arch=('x86_64')
+license=('GPL2')
+url="https://docs.xfce.org/panel-plugins/xfce4-cpufreq-plugin"
+groups=('xfce4-goodies')
+depends=('xfce4-panel')
+makedepends=('intltool')
+source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('07e458d9f4725e572001fb7eb66b9e931792311146e0f75ad5d87b9ae19573e9')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ --disable-debug
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et: