mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
* Add unbuilt wpebackend_fdo to updater-wpebackend_fdo-1.16.0 * Update wpe packages Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add libglvnd dep to libwpe Signed-off-by: Satadru Pramanik <satadru@gmail.com> * updater-wpebackend_fdo-1.16.0: Build Run on linux/amd64. * updater-wpebackend_fdo-1.16.0: Build Run on linux/arm/v7. * updater-wpebackend_fdo-1.16.0: Package File Update Run on linux/amd64 container. --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
28 lines
832 B
Ruby
28 lines
832 B
Ruby
require 'buildsystems/meson'
|
|
|
|
class Wpebackend_fdo < Meson
|
|
description 'Freedesktop.org backend for WPE WebKit'
|
|
homepage 'https://wpewebkit.org'
|
|
version '1.16.0'
|
|
license 'BSD-2'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://github.com/Igalia/WPEBackend-fdo.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '47fb788af30c77c94cf381fc1399b257a8a73da21bce93d2f1b643e43f4107fb',
|
|
armv7l: '47fb788af30c77c94cf381fc1399b257a8a73da21bce93d2f1b643e43f4107fb',
|
|
x86_64: '0ec402f80cfe95578025405e275162569f10b0ed3546627cd3c859ea40567722'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'libepoxy'
|
|
depends_on 'libwpe' # R
|
|
depends_on 'mesa' => :build
|
|
depends_on 'wayland'
|
|
depends_on 'wayland_protocols' => :build
|
|
end
|