mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* crew: cache builds * Initial Gnome43/Libjpeg_turbo/ICU72 commits squashed * fix lint error * update packages.yaml * Vulkan packages -> 1.3.231 * add packages to packages.yaml * add more to packages.yaml * update libxshmfence * pixman -> 0.42.0 * libpciaccess -> 0.17.0 * update libxau * update libxfont2 * update libxcb * many updates * updates * baobab updates * add libshumate * update gnome_calculator * update dfonf_editor * update evince * add libpanel * update libpeas * update libgweather * update libgudev gnome_maps * update upower and libxfixes * style update * update gnome_session * update gnome_settings_daemon * temporary partial webkit2gtk upload * update packages.yaml * fix ruby file perms * update folks * move webkit2gtk_4 back to 2.38.0 * update icu4c, change webkit2gtk build * add updated webkit2gtk_5 file * update js102 * add x86 builds for webkit2gtk_4 * add mozjs exclusion to icu4c postinstall * add builds for evolution_data_server * update gemacs * update webkit2gtk packages * update emacs * add folks fix * loosen icu4c postinstall check * rebuild libportal with gtk3 * update epiphany * openssh -> 9.1 * add x86 webkit2gtk_4 binaries * add postinstall to webkit2gtk_4 * update svt_av1 * update libavif * linting fix * curl -> 7.86.0 * git -> 2.38.1 * add postinstall to gnome_console * add gcc10 for armv7l * add gcc10 binaries * lint gcc10 * rebase fix * Add WIP webkit2gtk builds * add back postintall to gnome_maps * gstreamer version change * cleanup geocode_glib, and fix gnome_maps depend * s/@_ver.to_s/@_ver/ * add mpv build and gtk4 -> 4.8.2 * bump curl version to 7.86.0 * remove other version binaries from webkit2gtk builds * add i686 build * adjust compatibility for gemacs... for now. * Add code to sommelier to adjust for whether scripts are sourced or run. * make -> 4.4 * bump version
71 lines
2.0 KiB
Ruby
71 lines
2.0 KiB
Ruby
# Adapted from Arch Linux epiphany PKGBUILD at:
|
|
# https://github.com/archlinux/svntogit-packages/raw/packages/epiphany/trunk/PKGBUILD
|
|
|
|
require 'package'
|
|
|
|
class Epiphany < Package
|
|
description 'A GNOME web browser based on the WebKit rendering engine'
|
|
homepage 'https://wiki.gnome.org/Apps/Web'
|
|
version '43.0'
|
|
license 'GPL'
|
|
compatibility 'x86_64 aarch64 armv7l'
|
|
source_url 'https://gitlab.gnome.org/GNOME/epiphany.git'
|
|
git_hashtag version
|
|
|
|
binary_url({
|
|
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/epiphany/43.0_x86_64/epiphany-43.0-chromeos-x86_64.tar.zst'
|
|
})
|
|
binary_sha256({
|
|
x86_64: '143a6f9be5dbd4df49fee28c43ae4eabfc7820cffacf186e9d729f7eb6572ae2'
|
|
})
|
|
|
|
depends_on 'atk' # R
|
|
depends_on 'cairo' # R
|
|
depends_on 'docbook_xml' => :build
|
|
depends_on 'freetype' => :build
|
|
depends_on 'gcr' # R
|
|
depends_on 'gdk_pixbuf' # R
|
|
depends_on 'glib' # R
|
|
depends_on 'gmp' # R
|
|
depends_on 'gobject_introspection' => :build
|
|
depends_on 'gtk3' # R
|
|
depends_on 'help2man' => :build
|
|
depends_on 'iso_codes' => :build
|
|
depends_on 'json_glib' # R
|
|
depends_on 'libdazzle' # R
|
|
depends_on 'libhandy' # R
|
|
depends_on 'libportal' # R
|
|
depends_on 'libsecret' # R
|
|
depends_on 'libsoup' # R
|
|
depends_on 'lsb_release' => :build
|
|
depends_on 'pango' # R
|
|
depends_on 'startup_notification' => :build
|
|
depends_on 'valgrind' => :build
|
|
depends_on 'webkit2gtk_4' # R
|
|
depends_on 'webkit2gtk_4_1' # R
|
|
depends_on 'at_spi2_core' # R
|
|
depends_on 'gcr_3' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'harfbuzz' # R
|
|
depends_on 'libarchive' # R
|
|
depends_on 'libxml2' # R
|
|
depends_on 'nettle' # R
|
|
depends_on 'sqlite' # R
|
|
gnome
|
|
|
|
def self.build
|
|
system "meson #{CREW_MESON_OPTIONS} \
|
|
builddir"
|
|
system 'meson configure builddir'
|
|
system 'ninja -C builddir'
|
|
end
|
|
|
|
def self.install
|
|
system "DESTDIR=#{CREW_DEST_DIR} ninja -C builddir install"
|
|
end
|
|
|
|
def self.postinstall
|
|
system "glib-compile-schemas #{CREW_PREFIX}/share/glib-2.0/schemas/"
|
|
end
|
|
end
|