diff options
Diffstat (limited to 'testing/xfce4-wavelan-plugin/PKGBUILD')
-rw-r--r-- | testing/xfce4-wavelan-plugin/PKGBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/testing/xfce4-wavelan-plugin/PKGBUILD b/testing/xfce4-wavelan-plugin/PKGBUILD new file mode 100644 index 000000000..de7ae6670 --- /dev/null +++ b/testing/xfce4-wavelan-plugin/PKGBUILD @@ -0,0 +1,35 @@ +# $Id: PKGBUILD 157713 2012-04-29 02:55:34Z foutrelis $ +# Maintainer: AndyRTR <andyrtr@archlinux.org> +# Contributor: Tobias Kieslich <tobias (at) archlinux.org> + +pkgname=xfce4-wavelan-plugin +pkgver=0.5.10 +pkgrel=3 +pkgdesc="Plugin to monitor wifi connectivity for the Xfce4 panel" +arch=('i686' 'x86_64') +license=('custom') +url="http://goodies.xfce.org/projects/panel-plugins/xfce4-wavelan-plugin/" +groups=('xfce4-goodies') +depends=('xfce4-panel' 'net-tools') +makedepends=('intltool') +options=('!libtool') +source=(http://archive.xfce.org/src/panel-plugins/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2) +md5sums=('a4cd20ef471123936e762a139f1025e1') + +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 + install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" +} |