mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
675 B
Bash
23 lines
675 B
Bash
# $Id: PKGBUILD 41463 2009-06-04 07:10:30Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=gdl
|
|
pkgver=2.26.2
|
|
pkgrel=1
|
|
pkgdesc="Gnome Devtool Libraries"
|
|
arch=(i686 x86_64)
|
|
license=('GPL')
|
|
url="http://www.gnome.org/"
|
|
depends=('libglade>=2.6.4')
|
|
makedepends=('pkgconfig' 'intltool')
|
|
options=('!libtool')
|
|
source=(http://ftp.gnome.org/pub/GNOME/sources/gdl/2.26/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('461b077f33ee7a447964f521e5455fd1')
|
|
|
|
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
|
|
}
|