diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2012-04-22 12:32:21 +0200 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2012-04-22 12:32:21 +0200 |
commit | a019d9889a5b3803d57833c4b4502533f029c98b (patch) | |
tree | a928035510b10f044f532fe1a6f46a22137809ad /extra/xfce4-time-out-plugin | |
parent | 53f7b4b48972c757f0e68d4b02847a19e23d7232 (diff) | |
parent | af1e6c210b43ea6b8e043524edccb1d0befd257f (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community/portaudio_cpp/PKGBUILD
extra/cmake/PKGBUILD
extra/xfce4-clipman-plugin/PKGBUILD
extra/xfce4-time-out-plugin/PKGBUILD
multilib/lib32-mpg123/PKGBUILD
multilib/lib32-openssl/PKGBUILD
testing/telepathy-glib/PKGBUILD
Diffstat (limited to 'extra/xfce4-time-out-plugin')
-rwxr-xr-x | extra/xfce4-time-out-plugin/PKGBUILD | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/extra/xfce4-time-out-plugin/PKGBUILD b/extra/xfce4-time-out-plugin/PKGBUILD index 7bd0dd691..385fe624f 100755 --- a/extra/xfce4-time-out-plugin/PKGBUILD +++ b/extra/xfce4-time-out-plugin/PKGBUILD @@ -1,24 +1,24 @@ -# $Id: PKGBUILD 149258 2012-02-06 16:37:33Z foutrelis $ +# $Id: PKGBUILD 156570 2012-04-21 03:56:43Z eric $ # Maintainer: AndyRTR <andyrtr@archlinux.org> # Contributor: Abhishek Dasgupta <abhidg@gmail.com> pkgname=xfce4-time-out-plugin -pkgver=1.0.0 -pkgrel=2 +pkgver=1.0.1 +pkgrel=1 pkgdesc="Take a break from your computer with this plugin for XFCE4." -arch=(i686 x86_64 'mips64el') +arch=('i686' 'x86_64' 'mips64el') url="http://xfce-goodies.berlios.de/" groups=('xfce4-goodies') license=('GPL') -depends=('xfce4-panel>=4.7.0' 'libxfcegui4' 'hicolor-icon-theme') +depends=('xfce4-panel>=4.7.0') makedepends=('intltool') options=('!libtool') install=${pkgname}.install -source=(http://archive.xfce.org/src/panel-plugins/$pkgname/1.0/$pkgname-$pkgver.tar.bz2) -md5sums=('ef50a3fd45c169943acc8af93604d9fd') +source=(http://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2) +md5sums=('b6e4a3145d31c341e2506fb17b014587') build() { - cd ${srcdir}/${pkgname}-${pkgver} + cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr \ --sysconfdir=/etc \ --libexecdir=/usr/lib \ @@ -29,7 +29,7 @@ build() { } package() { - cd ${srcdir}/${pkgname}-${pkgver} - make DESTDIR=${pkgdir} install + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install } |