mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
21 lines
591 B
Bash
21 lines
591 B
Bash
# $Id: PKGBUILD 40236 2009-05-28 23:08:09Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=pygobject
|
|
pkgver=2.18.0
|
|
pkgrel=1
|
|
pkgdesc="Python bindings for GObject"
|
|
arch=('arm')
|
|
license=('LGPL')
|
|
depends=('python>=2.6.1' 'glib2>=2.20.2')
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/pygobject/2.18/${pkgname}-${pkgver}.tar.bz2)
|
|
options=('!libtool')
|
|
url="http://www.pygtk.org/"
|
|
md5sums=('522b813219a6ad14b85b25d953b08727')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|