mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-07 00:42:07 +01:00
39 lines
1.2 KiB
Plaintext
39 lines
1.2 KiB
Plaintext
# Contributor: Rasmus Thomsen <oss@cogitri.dev>
|
|
# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
|
|
pkgname=epiphany
|
|
pkgver=3.34.0
|
|
pkgrel=0
|
|
pkgdesc="A simple, clean, beautiful view of the web"
|
|
options="!check" # Location entry test fails on builders
|
|
url="https://wiki.gnome.org/Apps/Web"
|
|
arch="all"
|
|
license="GPL-3.0-or-later"
|
|
depends="gsettings-desktop-schemas"
|
|
makedepends="meson iso-codes-dev gtk+3.0-dev gsettings-desktop-schemas-dev
|
|
icu-dev json-glib-dev libdazzle-dev libhandy-dev libnotify-dev libsecret-dev
|
|
libsoup-dev libxml2-dev nettle-dev sqlite-dev webkit2gtk-dev gcr-dev itstool"
|
|
checkdepends="appstream-glib desktop-file-utils xvfb-run"
|
|
subpackages="$pkgname-lang $pkgname-doc"
|
|
source="https://download.gnome.org/sources/epiphany/${pkgver%.*}/epiphany-$pkgver.tar.xz"
|
|
|
|
build() {
|
|
meson \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var \
|
|
--buildtype=release \
|
|
. output
|
|
ninja -C output
|
|
}
|
|
|
|
check() {
|
|
xvfb-run ninja -C output test
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" ninja -C output install
|
|
}
|
|
|
|
sha512sums="a29cf1cc5fd7f2fdfd316c18b8c9e8801610bb2c221d814fcd4150c3ebde3e09a58d7ce51582db7ca48c13b4dbce89fa3ee2483bba7d0e1ff3f03b97e85b9aa4 epiphany-3.34.0.tar.xz"
|