diff options
author | Freemor <freemor@freemor.ca> | 2018-08-23 15:54:43 -0300 |
---|---|---|
committer | Freemor <freemor@freemor.ca> | 2018-08-23 15:55:05 -0300 |
commit | 269876ceac6f8d5e65ce93731a6c214c9c429c5c (patch) | |
tree | 60db189eb4a37dc8f5c261b2139c7fbd68f44d6d /libre/psensor | |
parent | 6f9a73dc94891a018da5f22f435fb4ffcd24a8bd (diff) | |
download | abslibre-269876ceac6f8d5e65ce93731a6c214c9c429c5c.tar.gz abslibre-269876ceac6f8d5e65ce93731a6c214c9c429c5c.tar.bz2 abslibre-269876ceac6f8d5e65ce93731a6c214c9c429c5c.zip |
Libre version of psensor without nonfree libxnvctrl
Diffstat (limited to 'libre/psensor')
-rw-r--r-- | libre/psensor/PKGBUILD | 39 | ||||
-rw-r--r-- | libre/psensor/is_error.patch | 26 |
2 files changed, 65 insertions, 0 deletions
diff --git a/libre/psensor/PKGBUILD b/libre/psensor/PKGBUILD new file mode 100644 index 000000000..8294c84f1 --- /dev/null +++ b/libre/psensor/PKGBUILD @@ -0,0 +1,39 @@ +# Maintainer (Arch): Robin Broda <robin@broda.me> +# Contributor (Arch): X0rg +# Contributor (Arch): marlock <marlock87@hotmail.com> +# Contributor (Arch): Diogo Leal <estranho@diogoleal.com> +# Maintainer: Freemor <freemor@freemor.ca> + +pkgname=psensor +pkgver=1.2.0 +pkgrel=5.parabola1 +pkgdesc='A graphical hardware temperature monitor for Linux without nonfree libxnvctrl' +arch=('x86_64' 'i686') +url='https://wpitchoune.net/psensor' +license=('GPL2') +depends=('lm_sensors' 'dconf' 'gtk3' 'udisks2' 'curl' 'libgtop' 'libnotify' + 'json-c' 'libmicrohttpd') +makedepends=('help2man') +source=("https://wpitchoune.net/${pkgname}/files/${pkgname}-${pkgver}.tar.gz" + 'is_error.patch') +sha512sums=('274928190a53f3603f7db4ea81057497bfa01b9d0f8b4eb2f5f5094fd944ee384aff8f9c21b9c85ea001cbe877e7dc020963c0570f000ef42b302cb54b038e4d' + 'fa1f0a8cdbd75fba2ad980a5beb1807e533ef12154db1f0cc97c9130080584cb0251e29a56068b0400f152e540f326a7b16749bf11b1e844d1d519d7bb0e71ed') + +prepare() { + cd "${pkgname}-${pkgver}" + + patch -Np1 -i "${srcdir}/is_error.patch" +} + +build() { + cd "${pkgname}-${pkgver}" + + ./configure --prefix=/usr + make +} + +package() { + cd "${pkgname}-${pkgver}" + + make DESTDIR="${pkgdir}/" install +} diff --git a/libre/psensor/is_error.patch b/libre/psensor/is_error.patch new file mode 100644 index 000000000..60aaa2d07 --- /dev/null +++ b/libre/psensor/is_error.patch @@ -0,0 +1,26 @@ +--- a/src/rsensor.c 2016-12-20 00:39:54.000000000 +0100 ++++ b/src/rsensor.c 2018-01-05 19:30:09.089759050 +0100 +@@ -133,7 +133,7 @@ + + obj = get_json_object(url); + +- if (obj && !is_error(obj)) { ++ if (obj && (obj != NULL)) { + n = json_object_array_length(obj); + sensors = malloc((n + 1) * sizeof(struct psensor *)); + +@@ -168,12 +168,12 @@ + + obj = get_json_object(get_url(s)); + +- if (obj && !is_error(obj)) { ++ if (obj && (obj != NULL)) { + json_object *om; + + json_object_object_get_ex(obj, "last_measure", &om); + +- if (!is_error(obj)) { ++ if (obj != NULL) { + json_object *ov, *ot; + struct timeval tv; + |