26 lines
585 B
Plaintext
26 lines
585 B
Plaintext
# Description: A lm_sensors plugin for the Xfce panel.
|
|
# URL: http://goodies.xfce.org/
|
|
# Packager: tyrry at nutyx dot org
|
|
# Depends on: xfce4-panel lm-sensors libnotify hicolor-icon-theme
|
|
|
|
name=xfce4-sensors-plugin
|
|
version=1.2.6
|
|
release=1
|
|
|
|
source=(http://archive.xfce.org/src/panel-plugins/$name/1.2/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--libexecdir=/usr/lib \
|
|
--localstatedir=/var \
|
|
--datadir=/usr/share \
|
|
--datarootdir=/usr/share \
|
|
--disable-static
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|