core/python2-gobject3/PKGBUILD

31 lines
652 B
Bash
Raw Normal View History

#
# Platform Packages for Chakra, part of chakra-project.org
#
pkgname=python2-gobject3
pkgbase=pygobject
2013-05-12 00:34:59 +08:00
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')
2013-05-12 00:34:59 +08:00
md5sums=('88265ec145e31a50b66386fcdeb91ce6')
build() {
cd "$pkgbase-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$pkgbase-$pkgver"
make DESTDIR="$pkgdir" install
}