diff options
Diffstat (limited to 'extra/xfce4-cpufreq-plugin')
-rw-r--r-- | extra/xfce4-cpufreq-plugin/PKGBUILD | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/extra/xfce4-cpufreq-plugin/PKGBUILD b/extra/xfce4-cpufreq-plugin/PKGBUILD index f237d1675..5e4f483e0 100644 --- a/extra/xfce4-cpufreq-plugin/PKGBUILD +++ b/extra/xfce4-cpufreq-plugin/PKGBUILD @@ -1,24 +1,24 @@ -# $Id: PKGBUILD 157843 2012-04-30 04:20:08Z foutrelis $ +# $Id: PKGBUILD 193891 2013-09-04 01:10:34Z eric $ # Maintainer: AndyRTR <andyrtr@archlinux.org> # Contributor: tobias <tobias funnychar archlinux.org> pkgname=xfce4-cpufreq-plugin -pkgver=1.0.0 -pkgrel=3 +pkgver=1.1.0 +pkgrel=1 pkgdesc="CPU frequency plugin for the Xfce4 panel" arch=('i686' 'x86_64') license=('GPL2') url="http://goodies.xfce.org/projects/panel-plugins/xfce4-cpufreq-plugin" groups=('xfce4-goodies') -depends=('xfce4-panel>=4.7.4' 'libxfcegui4' 'hicolor-icon-theme') +depends=('xfce4-panel') makedepends=('intltool') options=('!libtool') install=${pkgname}.install -source=(http://archive.xfce.org/src/panel-plugins/${pkgname}/1.0/${pkgname}-${pkgver}.tar.bz2) -md5sums=('24cae9b8583cae82b715b4f72aa8e341') +source=(http://archive.xfce.org/src/panel-plugins/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2) +md5sums=('dcc56af0e19266956c297d124ba551f4') build() { - cd ${srcdir}/xfce4-cpufreq-plugin-${pkgver} + cd xfce4-cpufreq-plugin-${pkgver} ./configure --prefix=/usr \ --sysconfdir=/etc \ --libexecdir=/usr/lib \ @@ -29,6 +29,6 @@ build() { } package() { - cd ${srcdir}/xfce4-cpufreq-plugin-${pkgver} - make DESTDIR=${pkgdir} install + cd xfce4-cpufreq-plugin-${pkgver} + make DESTDIR="${pkgdir}" install } |