mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-16 23:57:11 +00:00
added community/mate-sensors-applet
This commit is contained in:
parent
1eeed5705e
commit
24fc4804a2
1 changed files with 38 additions and 0 deletions
38
community/mate-sensors-applet/PKGBUILD
Normal file
38
community/mate-sensors-applet/PKGBUILD
Normal file
|
@ -0,0 +1,38 @@
|
|||
# Contributor: Martin Wimpress <code@flexion.org>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - drop dependency on libxnvctrl (nvidia-settings)
|
||||
|
||||
_ver=1.14
|
||||
_pkgbase=mate-sensors-applet
|
||||
pkgname=(${_pkgbase})
|
||||
pkgver=${_ver}.0
|
||||
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")
|
||||
sha1sums=('3662e22a2d960ebb145e43b669dc320543cb1e06')
|
||||
|
||||
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
|
||||
}
|
Loading…
Reference in a new issue