PKGBUILDs/community/pywebkitgtk/PKGBUILD

23 lines
596 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# Contributor: kasa <biuta.jr@gmail.com>
# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>
pkgname=pywebkitgtk
pkgver=1.1.6
pkgrel=2
pkgdesc="Python bindings to the WebKit GTK+ port"
arch=(i686 x86_64)
url="http://code.google.com/p/pywebkitgtk/"
license=('LGPL')
depends=('libwebkit' 'pygtk')
options=('!libtool' '!makeflags')
source=(http://pywebkitgtk.googlecode.com/files/${pkgname}-${pkgver}.tar.gz)
md5sums=('883f3d7386d29b6c0d00155329041854')
build() {
cd $srcdir/${pkgname}-${pkgver}
./configure --prefix=/usr || return 1
make || return 1
make DESTDIR=$pkgdir install
}