diff options
author | root <root@rshg054.dnsready.net> | 2012-04-23 00:01:26 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-04-23 00:01:26 +0000 |
commit | 076ac7347687744daa2ca386a67a4ad111c71415 (patch) | |
tree | b82f738122e9905a6dab679ab5f4cf7eb75e55f4 /extra/xfce4-wavelan-plugin | |
parent | af1e6c210b43ea6b8e043524edccb1d0befd257f (diff) |
Mon Apr 23 00:01:26 UTC 2012
Diffstat (limited to 'extra/xfce4-wavelan-plugin')
-rw-r--r-- | extra/xfce4-wavelan-plugin/PKGBUILD | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/extra/xfce4-wavelan-plugin/PKGBUILD b/extra/xfce4-wavelan-plugin/PKGBUILD index 3f8a24f2a..118008f86 100644 --- a/extra/xfce4-wavelan-plugin/PKGBUILD +++ b/extra/xfce4-wavelan-plugin/PKGBUILD @@ -1,26 +1,23 @@ -# $Id: PKGBUILD 149266 2012-02-06 17:02:00Z foutrelis $ +# $Id: PKGBUILD 156573 2012-04-21 04:42:41Z eric $ # Maintainer: AndyRTR <andyrtr@archlinux.org> # Contributor: Tobias Kieslich <tobias (at) archlinux.org> pkgname=xfce4-wavelan-plugin -pkgver=0.5.6 -pkgrel=2 -pkgdesc="plugin to monitor wifi connectivity for the Xfce4 panel" +pkgver=0.5.10 +pkgrel=1 +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' 'libxfcegui4') +depends=('xfce4-panel') makedepends=('intltool') options=('!libtool') -source=(http://archive.xfce.org/src/panel-plugins/${pkgname}/0.5/${pkgname}-${pkgver}.tar.bz2) -md5sums=('b23a4c9c2a206242ee4db8186dd01801') +source=(http://archive.xfce.org/src/panel-plugins/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2) +md5sums=('a4cd20ef471123936e762a139f1025e1') build() { - cd ${srcdir}/${pkgname}-${pkgver} - - # Work around DSO linking issue - LDFLAGS+=' -Wl,--copy-dt-needed-entries' + cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr \ --sysconfdir=/etc \ @@ -32,7 +29,7 @@ build() { } package() { - cd ${srcdir}/${pkgname}-${pkgver} - make DESTDIR=${pkgdir} install - install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install + install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" } |