mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -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>
24 lines
724 B
Ruby
24 lines
724 B
Ruby
require 'buildsystems/meson'
|
|
|
|
class Libwpe < Meson
|
|
description 'General-purpose library for WPE WebKit'
|
|
homepage 'https://wpewebkit.org'
|
|
version '1.16.2'
|
|
license 'BSD-2'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://github.com/WebPlatformForEmbedded/libwpe.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '450d4c896471afef86b0221833d9211ceaf7cc37b731295dc727203d3eded303',
|
|
armv7l: '450d4c896471afef86b0221833d9211ceaf7cc37b731295dc727203d3eded303',
|
|
x86_64: '34216a2089926b04202ac834408e9b2da0aab8ad051516cabb096213527a10d7'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'libglvnd' => :build
|
|
depends_on 'libxkbcommon'
|
|
end
|