mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
596 B
Bash
22 lines
596 B
Bash
# 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
|
|
}
|