mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Update gi, glib Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
28 lines
959 B
Ruby
28 lines
959 B
Ruby
require 'buildsystems/meson'
|
|
|
|
class Gobject_introspection < Meson
|
|
description 'GObject introspection is a middleware layer between C libraries (using GObject) and language bindings.'
|
|
homepage 'https://wiki.gnome.org/action/show/Projects/GObjectIntrospection'
|
|
version "1.86.0-#{CREW_PY_VER}"
|
|
license 'LGPL-2+ and GPL-2+'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://gitlab.gnome.org/GNOME/gobject-introspection.git'
|
|
git_hashtag version.split('-').first
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'a5cba3d959a91159377d03ae4e7d4c60d9751b2999fc9b2be7490f4d32249658',
|
|
armv7l: 'a5cba3d959a91159377d03ae4e7d4c60d9751b2999fc9b2be7490f4d32249658',
|
|
x86_64: 'd75b5ede1e0a437e514a770521037324a026c4799f9fbc78fa1f372236f62dd5'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'libffi' # R
|
|
depends_on 'py3_setuptools' => :build
|
|
depends_on 'python3' # R
|
|
|
|
gnome
|
|
end
|