core/python2-gobject3/PKGBUILD
2013-05-11 16:34:59 +00:00

31 lines
652 B
Bash

#
# Platform Packages for Chakra, part of chakra-project.org
#
pkgname=python2-gobject3
pkgbase=pygobject
pkgver=3.8.1
pkgrel=1
pkgdesc="Python2 bindings for GObject, including all introspection files"
arch=('x86_64')
url="https://live.gnome.org/PyGObject"
license=('LGPL')
depends=('python2' 'python2-cairo' 'gobject-introspection')
source=("http://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver::3}/pygobject-$pkgver.tar.xz")
options=('!libtool')
md5sums=('88265ec145e31a50b66386fcdeb91ce6')
build() {
cd "$pkgbase-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$pkgbase-$pkgver"
make DESTDIR="$pkgdir" install
}