mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add unbuilt mm_common to updater-mm_common-1.0.7 * updater-mm_common-1.0.7: Build Run on linux/arm/v7. * updater-mm_common-1.0.7: Build Run on linux/amd64. * updater-mm_common-1.0.7: Package File Update Run on linux/amd64 container. * updater-mm_common-1.0.7: Build Run on linux/arm/v7. * updater-mm_common-1.0.7: Build Run on linux/amd64. * updater-mm_common-1.0.7: Package File Update Run on linux/amd64 container. --------- Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
23 lines
651 B
Ruby
23 lines
651 B
Ruby
require 'buildsystems/meson'
|
|
|
|
class Mm_common < Meson
|
|
description 'Common build files of the C++ bindings'
|
|
homepage 'https://www.gtkmm.org/'
|
|
version '1.0.7'
|
|
license 'GPL-2'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://gitlab.gnome.org/GNOME/mm-common.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '8ddca6353d6b5db344516daa86b1d49bc2a61f9431f32fcfee26ab08a85e7a0b',
|
|
armv7l: '8ddca6353d6b5db344516daa86b1d49bc2a61f9431f32fcfee26ab08a85e7a0b',
|
|
x86_64: 'bea3f846e57af0a970adb5875bc9953864059e744a933ad035738d0e3b519ea7'
|
|
})
|
|
|
|
gnome
|
|
|
|
meson_options '-Duse-network=true'
|
|
end
|