mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
26 lines
882 B
Bash
26 lines
882 B
Bash
# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
|
|
# Maintainer: aurelien <aurelien@archlinux.org>
|
|
# Contributor: Tobias Kieslich <tobias (at) archlinux.org>
|
|
|
|
pkgname=xfce4-wavelan-plugin
|
|
pkgver=0.5.4
|
|
pkgrel=4
|
|
pkgdesc="plugin to monitor wifi connectivity for the Xfce4 panel"
|
|
arch=(i686 x86_64)
|
|
license=('custom')
|
|
url="http://xfce-goodies.berlios.de/"
|
|
groups=('xfce4-goodies')
|
|
depends=('xfce4-panel')
|
|
makedepends=('pkgconfig')
|
|
options=('!libtool')
|
|
source=(http://goodies.xfce.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('b13993facb6b7a25ca81ac8cde9a9100')
|
|
|
|
build() {
|
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/xfce4 \
|
|
--localstatedir=/var --disable-static
|
|
make || return 1
|
|
make DESTDIR=${startdir}/pkg install
|
|
install -Dm644 COPYING ${startdir}/pkg/usr/share/licenses/${pkgname}/COPYING
|
|
}
|