mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
20 lines
639 B
Bash
20 lines
639 B
Bash
# Maintainer: Allan McRae <mcrae_allan@hotmail.com>
|
|
# Contributor: Andrew Simmons <andrew.simmons@gmail.com>
|
|
|
|
pkgname=xfce4-volstatus-icon
|
|
pkgver=0.1.0
|
|
pkgrel=2
|
|
pkgdesc="A system tray icon that allows you to easily unmount removable volumes."
|
|
arch=('i686' 'x86_64')
|
|
url="http://goodies.xfce.org/projects/applications/xfce4-volstatus-icon"
|
|
license=('GPL')
|
|
depends=('exo' 'libxfcegui4')
|
|
source=(http://goodies.xfce.org/releases/$pkgname/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('b7848ebda5ce86810bd6dc27b915e192')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|