mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 15:47:15 +08:00
22 lines
642 B
Bash
22 lines
642 B
Bash
# $Id: PKGBUILD 68777 2010-02-14 12:11:27Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=pygobject
|
|
pkgver=2.21.1
|
|
pkgrel=2
|
|
pkgdesc="Python bindings for GObject"
|
|
arch=(i686 x86_64)
|
|
license=('LGPL')
|
|
depends=('python2' 'glib2>=2.23.3' 'libffi>=3.0.8')
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/pygobject/2.21/${pkgname}-${pkgver}.tar.bz2)
|
|
options=('!libtool')
|
|
url="http://www.pygtk.org/"
|
|
sha256sums=('e6ae6c70966899d2040c82ae4e1590cf941ebf121a3ec61e80bf517ce8d9be0a')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|