summaryrefslogtreecommitdiff
path: root/libre/mate-sensors-applet
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-08-08 23:16:32 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-08-08 23:16:32 -0300
commit55aff340cff4042468ba993e6722e005e082ebbd (patch)
treecace874eaf95597ca8a32413e305eea6c8830b49 /libre/mate-sensors-applet
parentccd8099ebe309a5e633b4dd82c05305055f37da4 (diff)
mate-sensors-applet: add new package to [libre] - Freedom issue #1051 -> https://labs.parabola.nu/issues/1051
Diffstat (limited to 'libre/mate-sensors-applet')
-rw-r--r--libre/mate-sensors-applet/PKGBUILD36
1 files changed, 36 insertions, 0 deletions
diff --git a/libre/mate-sensors-applet/PKGBUILD b/libre/mate-sensors-applet/PKGBUILD
new file mode 100644
index 000000000..402fec912
--- /dev/null
+++ b/libre/mate-sensors-applet/PKGBUILD
@@ -0,0 +1,36 @@
+# Contributor (Arch): Martin Wimpress <code@flexion.org>
+# Maintainer: André Silva <emulatorman@parabola.nu>
+
+_ver=1.14
+_pkgbase=mate-sensors-applet
+pkgname=(${_pkgbase})
+pkgver=${_ver}.0
+pkgrel=1.parabola1
+pkgdesc="A MATE Panel applet to display readings from hardware sensors, including CPU temperature, fan speeds and voltage readings (GTK2 version), without nonfree libxnvctrl support"
+url="http://mate-desktop.org"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libatasmart' 'libnotify' 'lm_sensors' 'mate-panel')
+makedepends=('docbook-xsl' 'intltool' 'itstool')
+groups=('mate-extra')
+conflicts=("${_pkgbase}-gtk3")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz")
+sha1sums=('3662e22a2d960ebb145e43b669dc320543cb1e06')
+
+build() {
+ cd "${srcdir}/${_pkgbase}-${pkgver}"
+ ./configure \
+ --prefix=/usr \
+ --libexecdir=/usr/lib/${_pkgbase} \
+ --with-gtk=2.0
+
+ #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+ sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+ make
+}
+
+package() {
+ cd "${srcdir}/${_pkgbase}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}