mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-27 00:10:29 +00:00
27 lines
827 B
Bash
27 lines
827 B
Bash
![]() |
# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
|
||
|
# Maintainer: aurelien <aurelien@archlinux.org>
|
||
|
# Contributor: Aurelien Foret <orelien@chez.com>
|
||
|
|
||
|
pkgname=xfce4-eyes-plugin
|
||
|
pkgver=4.4.0
|
||
|
pkgrel=4
|
||
|
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')
|
||
|
makedepends=('pkgconfig')
|
||
|
options=('!libtool')
|
||
|
install=${pkgname}.install
|
||
|
source=(http://goodies.xfce.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
|
||
|
md5sums=('d0e3e25c0ab031e68c79b2358664ac9d')
|
||
|
|
||
|
build() {
|
||
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
||
|
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/xfce4 \
|
||
|
--localstatedir=/var --disable-static
|
||
|
make || return 1
|
||
|
make DESTDIR=${startdir}/pkg install
|
||
|
}
|