blob: c189b642744d74487bbde825d8c64a494dc85dc8 (
plain)
1 # Description: A GNOME web browser based on the WebKit rendering engine
2 # URL: https://wiki.gnome.org/Apps/Web
3 # Maintainer: Aaron Ball, nullspoon at oper dot io
4 # Depends on: appstream-glib libhandy libportal iso-codes itstool libdazzle webkitgtk-6.0 gcr icu docbook-xml gobject-introspection gstreamer desktop-file-utils
5 # Optional: gst-plugins-base gst-plugins-good gst-plugins-bad gst-libav libnotify enchant
6
7 name=epiphany
8 version=46.beta
9 release=1
10 source=(https://download.gnome.org/sources/${name}/${version%.*}/${name}-${version}.tar.xz)
11
12 build() {
13 cd "${name}-${version}"
14
15 meson setup \
16 -Ddeveloper_mode=false \
17 -Dtech_preview=true \
18 --prefix=/usr \
19 build
20 meson compile -C build
21 meson install -C build --destdir "${PKG}"
22 rm -r "${PKG}/usr/share/help"
23 }
|