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)
|
|
|
|
|
2016-09-25 15:33:02 +00:00
|
|
|
_ver=1.16
|
2016-08-07 21:56:54 +00:00
|
|
|
_pkgbase=mate-sensors-applet
|
|
|
|
pkgname=(${_pkgbase})
|
2017-02-07 00:36:06 +00:00
|
|
|
pkgver=${_ver}.1
|
2016-08-07 21:56:54 +00:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="A MATE Panel applet to display readings from hardware sensors, including CPU temperature, fan speeds and voltage readings (GTK2 version)"
|
|
|
|
url="http://mate-desktop.org"
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
license=('GPL')
|
|
|
|
depends=('libatasmart' 'libnotify' 'lm_sensors' 'mate-panel')
|
|
|
|
makedepends=('docbook-xsl' 'intltool' 'itstool')
|
|
|
|
groups=('mate-extra')
|
|
|
|
conflicts=("${_pkgbase}-gtk3")
|
|
|
|
source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz")
|
2017-02-07 00:36:06 +00:00
|
|
|
sha1sums=('a588b17b8c7ae3d01bb0871a37fa9d726c4637a1')
|
2016-08-07 21:56:54 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/${_pkgbase}-${pkgver}"
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--libexecdir=/usr/lib/${_pkgbase} \
|
|
|
|
--with-gtk=2.0
|
|
|
|
|
|
|
|
#https://bugzilla.gnome.org/show_bug.cgi?id=656231
|
|
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
|
|
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${srcdir}/${_pkgbase}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
}
|