diff options
author | root <root@rshg054.dnsready.net> | 2012-09-20 01:37:39 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-09-20 01:37:39 -0700 |
commit | 005a14f92ef5d35e4c47d970cb7e69367a835958 (patch) | |
tree | c9e998e38c83fe1d0947a0ceec528b45b4aaa1f1 /gnome-unstable/webkitgtk3/PKGBUILD | |
parent | e8f387c8a45ee846f01fed02259d061d2d6e8d3d (diff) |
Thu Sep 20 01:37:13 PDT 2012
Diffstat (limited to 'gnome-unstable/webkitgtk3/PKGBUILD')
-rw-r--r-- | gnome-unstable/webkitgtk3/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gnome-unstable/webkitgtk3/PKGBUILD b/gnome-unstable/webkitgtk3/PKGBUILD new file mode 100644 index 000000000..a0f9adec7 --- /dev/null +++ b/gnome-unstable/webkitgtk3/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 165829 2012-08-31 06:08:20Z andyrtr $ +# Maintainer: Andreas Radke <andyrtr@archlinux.org> + +pkgname=webkitgtk3 +pkgver=1.9.92 +pkgrel=1 +pkgdesc="GTK+ Web content engine library for GTK+ 3.0" +arch=('i686' 'x86_64') +url="http://webkitgtk.org/" +license=('custom') +depends=('libxt' 'libxslt' 'sqlite' 'gstreamer0.10-base' 'libsoup' 'enchant' 'libgl' 'geoclue' 'gtk2' 'gtk3') +makedepends=('gperf' 'gobject-introspection' 'python2' 'mesa' 'ruby' 'gtk-doc') +conflicts=('libwebkit3') +provides=("libwebkit3=${pkgver}") +replaces=('libwebkit3') +options=('!libtool' '!emptydirs') +source=(http://webkitgtk.org/releases/webkit-$pkgver.tar.xz) +sha256sums=('27d28eb721ae4aae2d66e32eda4c11cc3ced53372e74da9ce0e1adc9857fbc22') + +build() { + cd "$srcdir/webkit-$pkgver" + PYTHON=/usr/bin/python2 ./configure --prefix=/usr \ + --enable-introspection \ + --disable-silent-rules \ + --libexecdir=/usr/lib/webkitgtk3 + make all stamp-po +} + +package() { + cd "$srcdir/webkit-$pkgver" + make -j1 DESTDIR="$pkgdir" install + install -Dm644 Source/WebKit/LICENSE "$pkgdir/usr/share/licenses/${pkgname}/LICENSE" +} |