PKGBUILDs/extra/mate-sensors-applet/PKGBUILD

37 lines
1.1 KiB
Bash
Raw Normal View History

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)
pkgname=mate-sensors-applet
2024-03-31 14:22:03 +00:00
pkgver=1.28.0
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')
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')
makedepends=('docbook-xsl' 'itstool')
2016-08-07 21:56:54 +00:00
groups=('mate-extra')
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() {
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
}