updated on Thu Jan 19 12:17:07 UTC 2012
[aur-mirror.git] / py3gobject-git / PKGBUILD
blobcf8f4b5419ec201a4947dcb1b35465b4d119a3e6
1 pkgname=py3gobject-git
2 pkgver=20111201
3 pkgrel=3
4 pkgdesc="Python 3 bindings for GObject and development files"
5 arch=('i686' 'x86_64')
6 url="https://live.gnome.org/PyGObject"
7 license=('LGPL')
8 makedepends=('python' 'python-cairo' 'gobject-introspection')
9 provides=('python-gobject' 'pygobject-devel')
10 conflicts=('python-gobject' 'pygobject-devel')
11 options=('!libtool')
12 url="https://live.gnome.org/PyGObject"
14 _gitroot="git://git.gnome.org/pygobject"
15 _gitname="${pkgname}"
18 build() {
19   cd "$srcdir"
20   msg "Connecting to GIT server...."
22   if [ -d $_gitname ] ; then
23     cd $_gitname && git pull origin
24     msg "The local files are updated."
25   else
26     git clone $_gitroot $_gitname
27   fi
29   msg "GIT checkout done or server timeout"
30   msg "Starting make..."
32   cd "${pkgname}"
33   ./autogen.sh --prefix=/usr
34   make
35     
38 package() {
39   pkgdesc="Python 3 bindings for GObject"
40   depends=('python' 'gobject-introspection' 'python-cairo')
42   cd "${srcdir}/${pkgbase}"
43   make DESTDIR="${pkgdir}" install