blob: 8f7e00b4cc41a795405953bbd98b73d8292743da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# $Id: PKGBUILD 149246 2012-02-06 16:26:23Z foutrelis $
# Maintainer: AndyRTR <andyrtr@archlinux.org>
# Contributor: Ben <ben@benmazer.net>
pkgname=xfce4-fsguard-plugin
pkgver=1.0.0
pkgrel=2
pkgdesc="File system usage monitor plugin for the Xfce4 panel"
arch=(i686 x86_64 'mips64el')
license=('GPL2')
url="http://xfce-goodies.berlios.de/"
groups=('xfce4-goodies')
depends=('xfce4-panel>=4.7.4' 'hicolor-icon-theme' 'libxfcegui4')
makedepends=('intltool')
options=(!libtool)
install=${pkgname}.install
source=(http://archive.xfce.org/src/panel-plugins/${pkgname}/1.0/${pkgname}-${pkgver}.tar.bz2)
md5sums=('8378f922b59a0d5a378af5e45a18c4a3')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib \
--localstatedir=/var \
--disable-static \
--disable-debug
make
}
package() {
cd ${srcdir}/${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}
|