blob: e5d7d3d6f1101c2fc6a582e9fe31a1136cb2be23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
# $Id$
# Maintainer (Arch): Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
# Contributor (Arch): Eric Bélanger <eric@archlinux.org>
# Contributor: Andreas Grapentin <andreas@grapentin.org>
# Contributor: Jesús E. <heckyel@parabola.nu>
# Contributor: André Silva <emulatorman@hyperbola.info>
# Contributor: Luke R. <g4jc@openmailbox.org>
# Contributor: Freemor <freemor@fremor.ca>
# parabola changes and rationale:
# - remove geoclue2 support
pkgname=webkit2gtk
pkgver=2.26.2
pkgrel=2
pkgrel+=.nonprism1
pkgdesc="GTK+ Web content engine library"
pkgdesc+=", without geoclue2 support"
arch=(x86_64)
arch+=(i686 armv7h)
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)
optdepends=('gst-plugins-base: free media decoding'
'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}
icu65.patch)
sha256sums=('6b80f0637a80818559ac8fd50db3b394f41cb61904fb9b3ed65fa51635806512'
'SKIP'
'3acd85fecfca223e3fbf834e3be286ea29270689da994a758659abc8ed0a6635')
validpgpkeys=('D7FCF61CF9A2DEAB31D81BD3F3D322D0EC4582C3'
'5AA3BC334FD7E3369E7C77B291C559DBE4C9123B')
# disable SSE2 on 486 and 686
if [ "$CARCH" = 'i486' -o "$CARCH" = 'i686' ]; then
source+=('webkitgtk-2.24.2-no-sse2.patch')
sha256sums+=('e95391eceeb29d0ebc57d6b867afd7cd95ed92683edeb28c6a7a5048b5a9b85b')
eval "$(
declare -f prepare | \
sed '
/cd.*/a patch -p1 < ../webkitgtk-2.24.2-no-sse2.patch
'
)"
fi
# work around broken generated makefiles resulting in
# "make[2]: *** No rule to make target 'JavaScriptCore-4.0.gir', needed by 'WebKit2-4.0.gir'. Stop."
eval "$(
declare -f build | \
sed '
/cmake --build build/a \
cd build && make JavaScriptCore-4-gir && cd .. \
cmake --build build
s/\(cmake --build build\)/\1 || true/g
'
)"
prepare() {
cd webkitgtk-$pkgver
patch -Np1 -i ../icu65.patch # from PLD Linux
}
build() {
cmake -Hwebkitgtk-$pkgver -Bbuild \
-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 \
-DENABLE_GEOLOCATION=OFF
cmake --build build
}
check() {
: cmake --build build --target tests
}
package() {
DESTDIR="$pkgdir" cmake --build build --target install
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"
}
|