2018-03-05 19:01:22 +00:00
|
|
|
# Maintainer: Brad Fanella <cesura@archlinux.org>
|
2016-08-07 21:56:54 +00:00
|
|
|
# Contributor: Martin Wimpress <code@flexion.org>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - drop dependency on libxnvctrl (nvidia-settings)
|
|
|
|
|
2017-03-18 19:42:56 +00:00
|
|
|
pkgname=mate-sensors-applet
|
2018-03-05 19:01:22 +00:00
|
|
|
pkgver=1.20.1
|
2016-08-07 21:56:54 +00:00
|
|
|
pkgrel=1
|
2017-03-18 19:42:56 +00:00
|
|
|
pkgdesc="A MATE Panel applet to display readings from hardware sensors, including CPU temperature, fan speeds and voltage readings"
|
2017-11-01 19:21:30 +00:00
|
|
|
url="https://mate-desktop.org"
|
2018-02-10 18:02:41 +00:00
|
|
|
arch=('x86_64')
|
2016-08-07 21:56:54 +00:00
|
|
|
license=('GPL')
|
|
|
|
depends=('libatasmart' 'libnotify' 'lm_sensors' 'mate-panel')
|
|
|
|
makedepends=('docbook-xsl' 'intltool' 'itstool')
|
|
|
|
groups=('mate-extra')
|
2017-03-18 19:42:56 +00:00
|
|
|
conflicts=('mate-sensors-applet-gtk3')
|
|
|
|
replaces=('mate-sensors-applet-gtk3')
|
2017-11-01 19:21:30 +00:00
|
|
|
source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz")
|
2018-03-05 19:01:22 +00:00
|
|
|
sha256sums=('bd00e792ec3948bf895c8ff590184da30fa5614bc6969d450cfc8381a51cd952')
|
2016-08-07 21:56:54 +00:00
|
|
|
|
|
|
|
build() {
|
2018-03-05 19:01:22 +00:00
|
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--libexecdir=/usr/lib/${pkgname}
|
2016-08-07 21:56:54 +00:00
|
|
|
|
2018-03-05 19:01:22 +00:00
|
|
|
#https://bugzilla.gnome.org/show_bug.cgi?id=656231
|
|
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
2016-08-07 21:56:54 +00:00
|
|
|
|
2018-03-05 19:01:22 +00:00
|
|
|
make
|
2016-08-07 21:56:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2018-03-05 19:01:22 +00:00
|
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
make DESTDIR="${pkgdir}" install
|
2016-08-07 21:56:54 +00:00
|
|
|
}
|