# Maintainer: Jan Alexander Steffens (heftig) # Contributor: Eric Bélanger # ALARM: Kevin Mihelich # - do not use LLINT assembly for v5/v6 highmem=1 pkgname=webkit2gtk-5.0 pkgver=2.34.6 pkgrel=1 pkgdesc="Web content engine for GTK" url="https://webkitgtk.org" arch=(x86_64) license=(custom) depends=(cairo fontconfig freetype2 libgcrypt glib2 gtk4 harfbuzz harfbuzz-icu icu libjpeg libsoup3 libxml2 zlib libpng sqlite atk libwebp at-spi2-core libegl libgl libgles libwpe wpebackend-fdo libxslt libsecret libtasn1 enchant libx11 libxext libice libxt wayland libnotify hyphen openjpeg2 woff2 libsystemd bubblewrap libseccomp xdg-dbus-proxy gstreamer gst-plugins-base-libs libmanette libxcomposite) makedepends=(cmake ninja python ruby gobject-introspection wayland-protocols systemd gst-plugins-bad gperf) optdepends=('geoclue: Geolocation support' 'gst-plugins-good: media decoding' 'gst-plugins-bad: media decoding' 'gst-libav: nonfree media decoding') options=(!lto) source=($url/releases/webkitgtk-$pkgver.tar.xz{,.asc}) sha256sums=('6bc8fd034aad0432a2459ce4fc7ee25ad65a4924c618bf8d93b52b0c1a84c1f6' 'SKIP') validpgpkeys=('D7FCF61CF9A2DEAB31D81BD3F3D322D0EC4582C3' # Carlos Garcia Campos '5AA3BC334FD7E3369E7C77B291C559DBE4C9123B') # Adrián Pérez de Castro prepare() { cd webkitgtk-$pkgver } build() { # do not use LLINT assembly for v5/v6 [[ $CARCH == "arm" || $CARCH == "armv6h" ]] && CONFIG="-DENABLE_JIT=OFF" cmake -S webkitgtk-$pkgver -B build -G Ninja \ -DPORT=GTK \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=lib \ -DCMAKE_INSTALL_LIBEXECDIR=lib \ -DCMAKE_SKIP_RPATH=ON \ -DUSE_GTK4=ON \ -DENABLE_GTKDOC=OFF \ -DENABLE_MINIBROWSER=ON \ $CONFIG cmake --build build } package() { depends+=(libwpe-1.0.so libWPEBackend-fdo-1.0.so) provides+=(libjavascriptcoregtk-5.0.so libwebkit2gtk-5.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" } # vim:set sw=2 et: