mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 15:13:56 -05:00
* Update py3_setuptools Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix Agree timeout env variable, add pip updates, fixup build_updated_packages script and add functionality to skip remote update checks. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add documentation for the --skip command. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Handle compatibility with commas Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Handle empty conpatibility. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fixup compatibility sections of package files. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Rebuild parted to handle missing binaries, and update build_updated_packages to notice binary_compression and not ask to rebuild if bimaries already exist. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix hash for nconvert. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com>
44 lines
1.2 KiB
Ruby
44 lines
1.2 KiB
Ruby
require 'buildsystems/meson'
|
|
|
|
class Mutter < Meson
|
|
description 'A window manager for GNOME'
|
|
homepage 'https://wiki.gnome.org/Projects/Mutter'
|
|
version '45.4'
|
|
license 'GPL-2+'
|
|
compatibility 'aarch64 armv7l x86_64' # No longer supported for i686 upstream
|
|
source_url 'https://gitlab.gnome.org/GNOME/mutter.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '51616723ce4f1abb0c70764cec24ef81a79bbb07ce04aa5b5e5a0dad1f9ef83d',
|
|
armv7l: '51616723ce4f1abb0c70764cec24ef81a79bbb07ce04aa5b5e5a0dad1f9ef83d',
|
|
x86_64: 'f7b3b24b155fcfb1041f59fff0585a94493917f8cd3771111c9a5d9bd7cb3cb4'
|
|
})
|
|
|
|
# depends_on 'ccache' => :build
|
|
depends_on 'dconf'
|
|
depends_on 'gobject_introspection' => :build
|
|
depends_on 'gsettings_desktop_schemas'
|
|
depends_on 'libcanberra'
|
|
depends_on 'libei'
|
|
depends_on 'libinput'
|
|
depends_on 'libwacom'
|
|
depends_on 'pipewire'
|
|
depends_on 'startup_notification'
|
|
depends_on 'xorg_server' => :build
|
|
depends_on 'xwayland'
|
|
|
|
gnome
|
|
|
|
meson_options "-Dtests=false \
|
|
-Dprofiler=false \
|
|
-Dopengl=true \
|
|
-Dglx=true \
|
|
-Dsystemd=false \
|
|
-Dwayland=true \
|
|
-Dnative_backend=true \
|
|
-Dcogl_tests=true \
|
|
-Dxwayland_path=#{CREW_PREFIX}/bin/Xwayland"
|
|
end
|