PKGBUILDs/extra/eel/PKGBUILD
2009-11-28 22:56:54 -08:00

22 lines
685 B
Bash

# Maintainer: Jan de Groot <jgc@archlinux.org>
pkgname=eel
pkgver=2.26.0
pkgrel=1
pkgdesc="Eazel Extensions Library is a collection of widgets and extensions for GNOME"
arch=('arm')
license=('GPL')
depends=('gnome-desktop>=2.26.0')
makedepends=('pkgconfig' 'intltool')
options=('!libtool')
url="http://www.gnome.org"
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.26/${pkgname}-${pkgver}.tar.bz2)
md5sums=('dfa105ccabd53efe4166dcfac75e2393')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --disable-static || return 1
make || return 1
make DESTDIR="${pkgdir}" install || return 1
}