mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
37 lines
1.1 KiB
Bash
37 lines
1.1 KiB
Bash
# Maintainer: Brad Fanella <cesura@archlinux.org>
|
|
# Contributor: Martin Wimpress <code@flexion.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - drop dependency on libxnvctrl (nvidia-settings)
|
|
|
|
pkgname=mate-sensors-applet
|
|
pkgver=1.24.1
|
|
pkgrel=1
|
|
pkgdesc="A MATE Panel applet to display readings from hardware sensors, including CPU temperature, fan speeds and voltage readings"
|
|
url="https://mate-desktop.org"
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
depends=('libatasmart' 'libnotify' 'lm_sensors' 'mate-panel' 'gettext')
|
|
makedepends=('docbook-xsl' 'itstool')
|
|
groups=('mate-extra')
|
|
conflicts=('mate-sensors-applet-gtk3')
|
|
replaces=('mate-sensors-applet-gtk3')
|
|
source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz")
|
|
sha256sums=('262c494b207e615656d8d8723946d11beb705fbf9f0166eb3dbb7a56877764d9')
|
|
|
|
build() {
|
|
cd "${pkgname}-${pkgver}"
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/${pkgname}
|
|
|
|
#https://bugzilla.gnome.org/show_bug.cgi?id=656231
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|