Date: Thursday, September 18, 2014 @ 20:41:25 Author: foutrelis Revision: 221947
Adopt package Modified: xfce4-clipman-plugin/trunk/PKGBUILD xfce4-clipman-plugin/trunk/xfce4-clipman-plugin.install ------------------------------+ PKGBUILD | 29 +++++++++++++++++------------ xfce4-clipman-plugin.install | 5 +++-- 2 files changed, 20 insertions(+), 14 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2014-09-18 18:31:01 UTC (rev 221946) +++ PKGBUILD 2014-09-18 18:41:25 UTC (rev 221947) @@ -1,5 +1,6 @@ # $Id$ -# Maintainer: tobias <tobias at archlinux.org> +# Maintainer: Evangelos Foutras <[email protected]> +# Contributor: tobias <tobias at archlinux.org> # Contributor: Aurelien Foret <[email protected]> pkgname=xfce4-clipman-plugin @@ -7,26 +8,30 @@ pkgrel=1 pkgdesc="A clipboard plugin for the Xfce4 panel" arch=('i686' 'x86_64') -license=('GPL') +license=('GPL2') url="http://goodies.xfce.org/projects/panel-plugins/xfce4-clipman-plugin" groups=('xfce4-goodies') depends=('xfce4-panel' 'libunique' 'libxtst' 'qrencode') makedepends=('intltool') -install=${pkgname}.install -source=(http://archive.xfce.org/src/panel-plugins/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2) +install=$pkgname.install +source=(http://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2) sha1sums=('71767fef0a8366bb9a6bd3edeacf4a8dabdcaa40') build() { - cd ${pkgname}-${pkgver} - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --libexecdir=/usr/lib \ - --localstatedir=/var \ - --disable-debug + cd "$srcdir/$pkgname-$pkgver" + + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib \ + --localstatedir=/var \ + --disable-debug make } package() { - cd ${pkgname}-${pkgver} - make DESTDIR="${pkgdir}" install + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install } + +# vim:set ts=2 sw=2 et: Modified: xfce4-clipman-plugin.install =================================================================== --- xfce4-clipman-plugin.install 2014-09-18 18:31:01 UTC (rev 221946) +++ xfce4-clipman-plugin.install 2014-09-18 18:41:25 UTC (rev 221947) @@ -3,10 +3,11 @@ } post_upgrade() { - post_install $1 + post_install } post_remove() { - gtk-update-icon-cache -q -t -f usr/share/icons/hicolor + post_install } +# vim:set ts=2 sw=2 et:
