2023-09-02 14:08:42 +00:00
|
|
|
# Maintainer: Alexander Epaneshnikov <alex19ep@archlinux.org>
|
|
|
|
# Contributor: 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
|
2024-03-31 14:22:03 +00:00
|
|
|
pkgver=1.28.0
|
|
|
|
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')
|
2023-09-02 14:08:42 +00:00
|
|
|
depends=('udisks2' 'libnotify' 'lm_sensors' 'mate-panel' 'gettext')
|
2020-02-25 20:22:59 +00:00
|
|
|
makedepends=('docbook-xsl' 'itstool')
|
2016-08-07 21:56:54 +00:00
|
|
|
groups=('mate-extra')
|
2017-11-01 19:21:30 +00:00
|
|
|
source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz")
|
2024-03-31 14:22:03 +00:00
|
|
|
sha256sums=('d465366682af8feb8618283c9789e8b70db6fd17ca8fa950ac6f710102315a81')
|
2016-08-07 21:56:54 +00:00
|
|
|
|
|
|
|
build() {
|
2019-01-10 13:33:46 +00:00
|
|
|
cd "${pkgname}-${pkgver}"
|
2023-09-02 14:08:42 +00:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--libexecdir=/usr/lib/${pkgname}
|
2016-08-07 21:56:54 +00:00
|
|
|
|
2023-09-02 14:08:42 +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
|
|
|
|
2023-09-02 14:08:42 +00:00
|
|
|
make
|
2016-08-07 21:56:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2023-09-02 14:08:42 +00:00
|
|
|
cd "${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
2016-08-07 21:56:54 +00:00
|
|
|
}
|