diff --git a/epiphany/.footprint b/epiphany/.footprint new file mode 100644 index 0000000..1dfe947 --- /dev/null +++ b/epiphany/.footprint @@ -0,0 +1,40 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/epiphany +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/epiphany/ +-rwxr-xr-x root/root usr/lib/epiphany/ephy-profile-migrator +-rwxr-xr-x root/root usr/lib/epiphany/libephymain.so +-rwxr-xr-x root/root usr/lib/epiphany/libephymisc.so +-rwxr-xr-x root/root usr/lib/epiphany/libephysync.so +-rwxr-xr-x root/root usr/lib/epiphany-search-provider +drwxr-xr-x root/root usr/lib/epiphany/web-process-extensions/ +-rwxr-xr-x root/root usr/lib/epiphany/web-process-extensions/libephywebprocessextension.so +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/applications/ +-rw-r--r-- root/root usr/share/applications/org.gnome.Epiphany.desktop +drwxr-xr-x root/root usr/share/dbus-1/ +drwxr-xr-x root/root usr/share/dbus-1/services/ +-rw-r--r-- root/root usr/share/dbus-1/services/org.gnome.Epiphany.SearchProvider.service +drwxr-xr-x root/root usr/share/epiphany/ +-rw-r--r-- root/root usr/share/epiphany/default-bookmarks.rdf +drwxr-xr-x root/root usr/share/glib-2.0/ +drwxr-xr-x root/root usr/share/glib-2.0/schemas/ +-rw-r--r-- root/root usr/share/glib-2.0/schemas/org.gnome.Epiphany.enums.xml +-rw-r--r-- root/root usr/share/glib-2.0/schemas/org.gnome.epiphany.gschema.xml +drwxr-xr-x root/root usr/share/gnome-shell/ +drwxr-xr-x root/root usr/share/gnome-shell/search-providers/ +-rw-r--r-- root/root usr/share/gnome-shell/search-providers/org.gnome.Epiphany.SearchProvider.ini +drwxr-xr-x root/root usr/share/icons/ +drwxr-xr-x root/root usr/share/icons/hicolor/ +drwxr-xr-x root/root usr/share/icons/hicolor/scalable/ +drwxr-xr-x root/root usr/share/icons/hicolor/scalable/apps/ +-rw-r--r-- root/root usr/share/icons/hicolor/scalable/apps/org.gnome.Epiphany.svg +drwxr-xr-x root/root usr/share/icons/hicolor/symbolic/ +drwxr-xr-x root/root usr/share/icons/hicolor/symbolic/apps/ +-rw-r--r-- root/root usr/share/icons/hicolor/symbolic/apps/org.gnome.Epiphany-symbolic.svg +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/epiphany.1.gz +drwxr-xr-x root/root usr/share/metainfo/ +-rw-r--r-- root/root usr/share/metainfo/org.gnome.Epiphany.appdata.xml diff --git a/epiphany/.signature b/epiphany/.signature new file mode 100644 index 0000000..ce07e90 --- /dev/null +++ b/epiphany/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/jmq.pub +RWTTPlFarK9CxA8UKf0ZGLLNlXgJWp5ASDG+/9bdfW144norGAlzben0orkGh61m3UXRKTO3FPXfwvi0b11mLDeEENSx57DEXQg= +SHA256 (Pkgfile) = 82a88d58acc25afbd208a18812fb445019372993f617935fd20ce09e93343102 +SHA256 (.footprint) = 38ecf449eb943ff273c95a54f7bb4dcd132ae355ca0e06bef95aabb126bf5d8d +SHA256 (epiphany-42.4.tar.xz) = 370938ad2920eeb28bc2435944776b7ba55a0e2ede65836f79818cfb7e8f0860 diff --git a/epiphany/Pkgfile b/epiphany/Pkgfile new file mode 100644 index 0000000..29588f6 --- /dev/null +++ b/epiphany/Pkgfile @@ -0,0 +1,21 @@ +# Description: A GNOME web browser based on the WebKit rendering engine +# URL: https://wiki.gnome.org/Apps/Web +# Maintainer: John McQuah, jmcquah at disroot dot org +# Depends on: appstream-glib libhandy libportal iso-codes itstool libdazzle webkitgtk gcr icu docbook-xml gobject-introspection gstreamer +# Optional: gst-plugins-base gst-plugins-good gst-plugins-bad gst-libav libnotify enchant +name=epiphany +version=42.4 +release=1 +source=(https://download.gnome.org/sources/${name}/${version%.*}/${name}-${version}.tar.xz) + +build() { + cd "${name}-${version}" + + sed -i "/^subdir('po')/d" meson.build + meson build \ + --prefix="/usr" --libexecdir="/usr/lib" \ + -Ddeveloper_mode=false + ninja -C build + DESTDIR="${PKG}" meson install -C build + rm -r "${PKG}/usr/share/help" +} diff --git a/epiphany/post-install b/epiphany/post-install new file mode 100755 index 0000000..cafb913 --- /dev/null +++ b/epiphany/post-install @@ -0,0 +1,5 @@ +#!/bin/sh + +/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas + +# EOF