mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
26 lines
899 B
Bash
26 lines
899 B
Bash
# $Id: PKGBUILD 44689 2009-07-03 17:59:28Z jgc $
|
|
# Maintainer: Douglas Soares de Andrade <douglas@archlinux.org>
|
|
|
|
pkgname=glade
|
|
pkgver=3.6.7
|
|
pkgrel=1
|
|
pkgdesc="user interface builder for GTK+ and GNOME."
|
|
arch=(i686 x86_64)
|
|
license=('GPL' 'LGPL')
|
|
depends=('gtk2>=2.16.2' 'libxml2>=2.6.32' 'desktop-file-utils')
|
|
makedepends=('intltool' 'pkgconfig' 'python>=2.6' 'libgnomeui>=2.24.1' 'gtk-doc')
|
|
optdepends=('libgnomeui: GNOME UI widgets'
|
|
'python: Python widgets support')
|
|
options=('!libtool')
|
|
url="http://glade.gnome.org/"
|
|
install=glade.install
|
|
source=(http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-${pkgver}.tar.bz2)
|
|
md5sums=('0fbe06e4babb2adeaf9725577ff43395')
|
|
|
|
build() {
|
|
cd "${srcdir}/glade3-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
--localstatedir=/var --disable-static || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|