PKGBUILDs/extra/webkit2gtk/PKGBUILD

68 lines
1.9 KiB
Bash
Raw Normal View History

2018-06-12 00:01:41 +00:00
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
2017-02-11 00:45:57 +00:00
# Contributor: Eric Bélanger <eric@archlinux.org>
2014-10-17 16:01:45 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - do not use LLINT assembly for v5/v6
2015-10-18 03:28:25 +00:00
highmem=1
2014-10-17 16:01:45 +00:00
pkgname=webkit2gtk
2019-09-23 13:59:44 +00:00
pkgver=2.26.1
2019-04-09 23:43:45 +00:00
pkgrel=1
2014-10-17 16:01:45 +00:00
pkgdesc="GTK+ Web content engine library"
2017-11-17 23:33:02 +00:00
arch=(x86_64)
2017-01-18 01:22:01 +00:00
url="https://webkitgtk.org/"
2017-02-11 00:45:57 +00:00
license=(custom)
2019-03-14 01:01:25 +00:00
depends=(libxt libxslt enchant gst-plugins-base-libs libsecret libwebp openjpeg2
2019-09-09 23:13:19 +00:00
harfbuzz-icu gtk3 libnotify hyphen woff2 libwpe wpebackend-fdo
bubblewrap xdg-dbus-proxy)
2019-03-14 01:01:25 +00:00
makedepends=(gperf gobject-introspection ruby gtk-doc cmake python geoclue)
optdepends=('geoclue: Geolocation support'
2014-10-17 16:01:45 +00:00
'gst-plugins-good: media decoding'
2019-03-14 01:01:25 +00:00
'gst-plugins-bad: media decoding'
2014-10-17 16:01:45 +00:00
'gst-libav: nonfree media decoding')
2018-09-22 04:07:28 +00:00
source=(https://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz{,.asc})
2019-09-23 13:59:44 +00:00
sha256sums=('6b4b21801d2b1008422a1075dbd6fb4ae8b5127503faf657cf9671289d9cd155'
2018-09-22 04:07:28 +00:00
'SKIP')
validpgpkeys=('D7FCF61CF9A2DEAB31D81BD3F3D322D0EC4582C3'
'5AA3BC334FD7E3369E7C77B291C559DBE4C9123B')
2014-10-17 16:01:45 +00:00
prepare() {
cd webkitgtk-$pkgver
}
build() {
# do not use LLINT assembly for v5/v6
2015-10-09 03:12:50 +00:00
[[ $CARCH == "arm" || $CARCH == "armv6h" ]] && CONFIG="-DENABLE_JIT=OFF"
2014-10-17 16:01:45 +00:00
2019-03-14 01:01:25 +00:00
cmake -Hwebkitgtk-$pkgver -Bbuild \
2017-12-20 06:23:03 +00:00
-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 \
2018-06-12 00:01:41 +00:00
$CONFIG
2018-12-14 13:58:20 +00:00
cmake --build build
2018-06-12 00:01:41 +00:00
}
check() {
2018-08-12 14:20:44 +00:00
: cmake --build build --target tests
2014-10-17 16:01:45 +00:00
}
package() {
2018-06-12 00:01:41 +00:00
DESTDIR="$pkgdir" cmake --build build --target install
2014-10-17 16:01:45 +00:00
2018-03-25 00:58:10 +00:00
cd webkitgtk-$pkgver
2018-06-12 00:01:41 +00:00
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"
2014-10-17 16:01:45 +00:00
}
2018-06-12 00:01:41 +00:00
# vim:set sw=2 et: