# Maintainer (arch): Jan Alexander Steffens (heftig) # Contributor (arch): Eric Bélanger # Contributor: Andreas Grapentin # Contributor: Jesús E. # Contributor: André Silva # Contributor: Luke R. # Contributor: Freemor # Contributor: bill-auger # parabola changes and rationale: # - remove geoclue2 support # - pinned to 'icu' sodep pkgname=webkit2gtk pkgver=2.30.4 pkgrel=2 pkgrel+=.nonprism2 pkgdesc="GTK+ Web content engine library" pkgdesc+=", without geoclue2 support" arch=(x86_64) arch+=(armv7h i686) url="https://webkitgtk.org/" license=(custom) depends=(libxt libxslt enchant gst-plugins-base-libs libsecret libwebp openjpeg2 harfbuzz-icu gtk3 libnotify hyphen woff2 libwpe wpebackend-fdo bubblewrap xdg-dbus-proxy) makedepends=(gperf gobject-introspection ruby gtk-doc cmake python geoclue gst-plugins-bad ninja) makedepends=(${makedepends[@]/geoclue/}) optdepends=('gst-plugins-good: media decoding' 'gst-plugins-bad: media decoding' 'gst-libav: nonfree media decoding') source=(https://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz{,.asc}) sha256sums=('d595a37c5001ff787266b155e303a5f2e5b48a6d466f2714c2f30c11392f7b24' 'SKIP') validpgpkeys=('D7FCF61CF9A2DEAB31D81BD3F3D322D0EC4582C3' '5AA3BC334FD7E3369E7C77B291C559DBE4C9123B') prepare() { cd webkitgtk-$pkgver case "$CARCH" in i686) # disable SSE2 on 486 and 686 source+=('webkitgtk-2.24.2-no-sse2.patch') sha256sums+=('e95391eceeb29d0ebc57d6b867afd7cd95ed92683edeb28c6a7a5048b5a9b85b') options+=(!debug) patch -p1 < ../webkitgtk-2.24.2-no-sse2.patch ;; esac } build() { CFLAGS+=" $CPPFLAGS" CXXFLAGS+=" $CPPFLAGS" cmake -S webkitgtk-$pkgver -B build -G Ninja \ -DPORT=GTK \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_SKIP_RPATH=ON \ -DENABLE_GTKDOC=ON \ -DENABLE_MINIBROWSER=ON \ -DENABLE_GEOLOCATION=OFF \ -DLIBEXEC_INSTALL_DIR=/usr/lib \ -DLIB_INSTALL_DIR=/usr/lib cmake --build build } check() { : cmake --build build --target tests } package() { depends+=(libwpe-1.0.so libWPEBackend-fdo-1.0.so) depends+=(libicui18n.so libicuuc.so) provides+=(libjavascriptcoregtk-4.0.so libwebkit2gtk-4.0.so) DESTDIR="$pkgdir" cmake --install build cd webkitgtk-$pkgver find Source -name 'COPYING*' -or -name 'LICENSE*' -print0 | sort -z | while IFS= read -d $'\0' -r _f; do echo "### $_f ###" cat "$_f" echo done | install -Dm644 /dev/stdin "$pkgdir/usr/share/licenses/$pkgname/LICENSE" }