23 lines
494 B
Plaintext
23 lines
494 B
Plaintext
# Description: monitor space on point of mounting for the panel
|
|
# URL: http://goodies.xfce.org/
|
|
# Packager: tyrry at nutyx dot org
|
|
# Depends on: xfce4-panel
|
|
|
|
name=xfce4-fsguard-plugin
|
|
version=1.0.2
|
|
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
|
|
}
|