summaryrefslogtreecommitdiff
path: root/libre/epiphany/PKGBUILD
blob: 3c7e1088e3ddab471210028f6c52d37c8138f574 (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
# Maintainer (Arch): Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
# Maintainer (Arch): Jan de Groot <jgc@archlinux.org>
# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
# Contributor: Isaac David <isacdaavid@at@isacdaavid@dot@info>
# Contributor: André Silva <emulatorman@hyperbola.info>
# Contributor: Márcio Silva <coadde@hyperbola.info>

# parabola changes and rationale:
#  - rebranded to parabola
#  - switched default searchengine to duckduckgo

pkgname=epiphany
pkgver=3.30.3
pkgrel=1
pkgrel+=.par2
pkgdesc="A GNOME web browser based on the WebKit rendering engine"
pkgdesc=+", with DuckDuckGo HTML support"
url="https://wiki.gnome.org/Apps/Web"
arch=(x86_64)
arch+=(i686 armv7h)
license=(GPL)
depends=(webkit2gtk gcr icu libdazzle)
makedepends=(docbook-xml startup-notification lsb-release gobject-introspection yelp-tools
             appstream-glib git meson)
checkdepends=(xorg-server-xvfb)
groups=(gnome)
_commit=0777a3db37a3c8520740448bf50f620a94a8e551  # tags/3.30.3^0
source=("git+https://gitlab.gnome.org/GNOME/epiphany.git#commit=$_commit"
        libre.patch)
sha256sums=('SKIP'
            '8cee8e5f896ce12832d50e7ab97ef16165d70d135018742e0f5bc15507d4e708')

pkgver() {
  cd $pkgname
  git describe --tags | sed 's/-/+/g'
}

prepare() {
  cd $pkgname
  patch -Np1 -i ../libre.patch
}

build() {
  arch-meson $pkgname build \
    -D distributor_name="Parabola GNU/Linux-libre"
  ninja -C build
}

check() {
  # ERROR:../epiphany/tests/ephy-web-app-utils-test.c:109:test_web_app_lifetime: assertion failed (g_list_length (apps) == 1): (0 == 1)
  xvfb-run meson test -C build || :
}

package() {
  local _icu_ver
  _icu_ver=$(pacman -S --print-format='%v' icu)
  depends+=("icu>=${_icu_ver}" "icu<$((${_icu_ver%%.*} + 1))")

  DESTDIR="$pkgdir" meson install -C build
}