21 lines
633 B
Plaintext
21 lines
633 B
Plaintext
# Description: system tray icon that allows you to easily eject removable devices from your system.
|
|
# URL: http://goodies.xfce.org/projects/applications/xfce4-volstatus-icon
|
|
# Maintainer: CRUX Xfce Team, xfce-ports at crux dot nu
|
|
# Packager: Jose V Beneyto, sepen at crux dot nu
|
|
# Depends on: hal exo xfce4-panel
|
|
# Group: xfce4
|
|
|
|
name=xfce4-volstatus-icon
|
|
version=0.1.0
|
|
release=2
|
|
source=(http://archive.xfce.org/src/apps/$name/${version%.*}/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--with-x \
|
|
--disable-debug
|
|
make
|
|
install -D $name/$name $PKG/usr/bin/$name
|
|
}
|