diff options
-rw-r--r-- | libre/epiphany/PKGBUILD | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/libre/epiphany/PKGBUILD b/libre/epiphany/PKGBUILD index 78b03a794..965110803 100644 --- a/libre/epiphany/PKGBUILD +++ b/libre/epiphany/PKGBUILD @@ -15,7 +15,7 @@ pkgname=epiphany pkgver=42.3 -pkgrel=3 +pkgrel=1 pkgrel+=.parabola1 pkgdesc="A GNOME web browser based on the WebKit rendering engine" pkgdesc+=", with DuckDuckGo-HTML search" @@ -23,10 +23,7 @@ url="https://wiki.gnome.org/Apps/Web" arch=(x86_64) arch+=(i686 armv7h) license=(GPL) -depends=(webkit2gtk-4.1 gcr icu libdazzle libhandy libarchive) -# we don't have libportal-gtk3 yet on i686 -depends_armv7h+=(libportal-gtk3) -depends_x86_64+=(libportal-gtk3) +depends=(webkit2gtk-4.1 gcr icu libdazzle libhandy libarchive libportal-gtk3) depends=( $( sed 's| icu | |' <<<${depends[@]} ) ) depends+=(libhogweed.so) makedepends=(docbook-xml startup-notification lsb-release gobject-introspection @@ -56,11 +53,7 @@ prepare() { } build() { - if [ "${CARCH}" != "i686" ] ; then - arch-meson $pkgname build -D soup2=disabled - else - arch-meson $pkgname build -D soup2=disabled -D libportal=disabled - fi + arch-meson $pkgname build -D soup2=disabled meson compile -C build } |