mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
26 lines
847 B
Bash
26 lines
847 B
Bash
# $Id: PKGBUILD 43181 2009-06-20 16:39:01Z andyrtr $
|
|
# Maintainer: aurelien <aurelien@archlinux.org>
|
|
# Contributor: Aurelien Foret <orelien@chez.com>
|
|
|
|
pkgname=xfce4-dict-plugin
|
|
pkgver=0.5.3
|
|
pkgrel=1
|
|
pkgdesc="A dictionary plugin for the Xfce panel"
|
|
arch=(i686 x86_64)
|
|
license=('GPL2')
|
|
url="http://xfce-goodies.berlios.de/"
|
|
groups=('xfce4-goodies')
|
|
depends=('xfce4-panel>=4.6.1' 'hicolor-icon-theme' 'librsvg')
|
|
makedepends=('pkgconfig')
|
|
options=('!libtool')
|
|
install=${pkgname}.install
|
|
source=(http://goodies.xfce.org/releases/xfce4-dict/xfce4-dict-${pkgver}.tar.bz2)
|
|
md5sums=('5d6e6da52ebe3663040a9936e3a63f8b')
|
|
|
|
build() {
|
|
cd ${startdir}/src/xfce4-dict-${pkgver}
|
|
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
|
|
--localstatedir=/var --disable-static
|
|
make || return 1
|
|
make DESTDIR=${startdir}/pkg install || return 1
|
|
}
|