24 lines
553 B
Plaintext
24 lines
553 B
Plaintext
|
# Description: A battery monitor plugin for the Xfce panel
|
||
|
# URL: http://goodies.xfce.org/projects/panel-plugins/xfce4-cpugraph-plugin
|
||
|
# Packager: tyrry at nutyx dot org
|
||
|
# Depends on: xfce4-panel
|
||
|
|
||
|
name=xfce4-battery-plugin
|
||
|
version=1.0.5
|
||
|
release=2
|
||
|
|
||
|
source=(http://archive.xfce.org/src/panel-plugins/$name/1.0/$name-$version.tar.bz2)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--sysconfdir=/etc \
|
||
|
--libexecdir=/usr/lib \
|
||
|
--localstatedir=/var \
|
||
|
--disable-static \
|
||
|
--disable-debug
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|