mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
24 lines
919 B
Bash
24 lines
919 B
Bash
|
# $Id: PKGBUILD 44699 2009-07-03 18:05:27Z jgc $
|
||
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
||
|
|
||
|
pkgname=gnome-python-extras
|
||
|
pkgver=2.25.3
|
||
|
pkgrel=2
|
||
|
pkgdesc="Gnome Python interfaces for libraries not part of the core platform"
|
||
|
arch=(i686 x86_64)
|
||
|
license=('GPL' 'LGPL')
|
||
|
depends=('gnome-python>=2.22.1')
|
||
|
makedepends=('libgtkhtml' 'gtkspell' 'gdl' 'xulrunner>=1.9.1' 'libgksu' 'pkgconfig' 'libgnomeui' 'libgda')
|
||
|
optdepends=('libgtkhtml' 'gtkspell' 'gdl' 'xulrunner' 'libgksu' 'libgnomeui' 'libgda')
|
||
|
options=('!libtool')
|
||
|
source=(http://ftp.gnome.org/pub/gnome/sources/gnome-python-extras/2.25/gnome-python-extras-${pkgver}.tar.bz2)
|
||
|
url="http://www.daa.com.au/~james/pygtk/"
|
||
|
md5sums=('9f3b7ec5c57130b96061cb486b79c076')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/gnome-python-extras-${pkgver}"
|
||
|
./configure --prefix=/usr || return 1
|
||
|
make MOZILLA_HOME=/usr/lib/xulrunner-1.9.1 || return 1
|
||
|
make DESTDIR="${pkgdir}" install || return 1
|
||
|
}
|