mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
25 lines
810 B
Bash
25 lines
810 B
Bash
# $Id: PKGBUILD 26058 2009-02-02 20:20:18Z andyrtr $
|
|
# Maintainer: aurelien <aurelien@archlinux.org>
|
|
# Contributor: Tobias Kieslich <tobias (at) archlinux.org>
|
|
|
|
pkgname=xfce4-genmon-plugin
|
|
pkgver=3.2
|
|
pkgrel=1
|
|
pkgdesc="plugin that monitors customizable programs stdout for the Xfce4 panel"
|
|
arch=(i686 x86_64)
|
|
license=('LGPL2')
|
|
url="http://xfce-goodies.berlios.de/"
|
|
groups=('xfce4-goodies')
|
|
depends=('xfce4-panel>=4.5.99.1')
|
|
makedepends=('pkgconfig')
|
|
options=('!libtool')
|
|
source=(http://goodies.xfce.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('5f292aa102a87d45207b6a373939a35d')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
|
|
--localstatedir=/var --disable-static
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|