mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 15:47:15 +08:00
22 lines
632 B
Bash
22 lines
632 B
Bash
# $Id: PKGBUILD 55169 2009-10-12 08:04:12Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=pygobject
|
|
pkgver=2.20.0
|
|
pkgrel=1
|
|
pkgdesc="Python bindings for GObject"
|
|
arch=(i686 x86_64)
|
|
license=('LGPL')
|
|
depends=('python>=2.6.1' 'glib2>=2.22.0')
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/pygobject/2.20/${pkgname}-${pkgver}.tar.bz2)
|
|
options=('!libtool')
|
|
url="http://www.pygtk.org/"
|
|
sha256sums=('41e923a3f4426a3e19f6d154c424e3dac6f39defca77af602ac6272ce270fa81')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|