# $Id$ # Contributor (Arch): Eric Bélanger # Contributor: Andreas Grapentin # Contributor: Jesús E. # Contributor: André Silva # Contributor: Luke R. # parabola changes and rationale: # - remove geoclue2 support pkgname=webkit2gtk pkgver=2.18.6 pkgrel=1.nonprism1 pkgdesc="GTK+ Web content engine library, without geoclue2 support" arch=(x86_64 i686 armv7h) url="https://webkitgtk.org/" license=(custom) depends=(libxt libxslt enchant gst-plugins-base-libs gst-plugins-bad libsecret libwebp harfbuzz-icu gtk3 libnotify hyphen) makedepends=(gtk2 gperf gobject-introspection ruby gtk-doc cmake python python2 ninja) optdepends=('gtk2: Netscape plugin support' 'gst-plugins-base: free media decoding' 'gst-plugins-good: media decoding' 'gst-libav: nonfree media decoding') source=(https://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz{,.asc} enchant-2.diff) sha256sums=('93912cc2f40f12e452be1ca4babdbdaac0ec4f828d441257a6b06c2963bbac3c' 'SKIP' 'ed8e5fe614ed800da3caccb8162bdd2d8dbd5a69ab90d426b34e124dee5cf1b6') validpgpkeys=('D7FCF61CF9A2DEAB31D81BD3F3D322D0EC4582C3') prepare() { mkdir build cd webkitgtk-$pkgver # enchant 2.2 patch -Np1 -i ../enchant-2.diff sed -i '1s/python$/&2/' Tools/gtk/generate-gtkdoc rm -r Source/ThirdParty/gtest/ } build() { cd build cmake \ -G Ninja \ -DPORT=GTK \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_SKIP_RPATH=ON \ -DENABLE_GTKDOC=ON \ -DLIBEXEC_INSTALL_DIR=/usr/lib \ -DLIB_INSTALL_DIR=/usr/lib \ -DPYTHON_EXECUTABLE=/usr/bin/python2 \ -DUSE_GEOCLUE2=OFF \ -DENABLE_GEOLOCATION=OFF \ ../webkitgtk-$pkgver ninja } package() { cd build DESTDIR="$pkgdir" ninja install cd ../webkitgtk-$pkgver find Source -name 'COPYING*' -or -name 'LICENSE*' -print0 | while IFS= read -d $'\0' -r _f do echo "### $_f ###" cat "$_f" echo done | install -Dm644 /dev/stdin "$pkgdir/usr/share/licenses/$pkgname/LICENSE" }