diff options
Diffstat (limited to 'extra/xfce4-eyes-plugin/PKGBUILD')
-rw-r--r-- | extra/xfce4-eyes-plugin/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/extra/xfce4-eyes-plugin/PKGBUILD b/extra/xfce4-eyes-plugin/PKGBUILD new file mode 100644 index 000000000..454c329c4 --- /dev/null +++ b/extra/xfce4-eyes-plugin/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 104745 2011-01-04 20:33:13Z andyrtr $ +# Maintainer: AndyRTR <andyrtr@archlinux.org> +# Contributor: Aurelien Foret <orelien@chez.com> + +pkgname=xfce4-eyes-plugin +pkgver=4.4.1 +pkgrel=1 +pkgdesc="A rolling eyes (following mouse pointer) plugin for the Xfce panel" +arch=(i686 x86_64) +license=('GPL2') +url="http://xfce-goodies.berlios.de/" +groups=('xfce4-goodies') +depends=('xfce4-panel' 'libxfcegui4' 'hicolor-icon-theme') +makedepends=('intltool' 'perlxml') +install=${pkgname}.install +source=(http://archive.xfce.org/src/panel-plugins/${pkgname}/4.4/${pkgname}-${pkgver}.tar.bz2) +md5sums=('dcbf6ea9035d379d168b479be0d09f14') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib \ + --localstatedir=/var \ + --disable-static + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install +} |