mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
26 lines
769 B
Ruby
26 lines
769 B
Ruby
require 'buildsystems/meson'
|
|
|
|
class Libgudev < Meson
|
|
description 'libgudev is a library with GObject bindings to libudev'
|
|
homepage 'https://wiki.gnome.org/Projects/libgudev'
|
|
version '238'
|
|
license 'LGPL-2.1+'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://gitlab.gnome.org/GNOME/libgudev.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '90a6e1e31605c0e70bb19a9670f6d63b386c32c8a5e19d7b8b3fc6bec48990ba',
|
|
armv7l: '90a6e1e31605c0e70bb19a9670f6d63b386c32c8a5e19d7b8b3fc6bec48990ba',
|
|
x86_64: '3c4e94e7cf0a94d58929a3a2f2b722a701070424750ebdb70793039345eb00bc'
|
|
})
|
|
|
|
depends_on 'eudev' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'glib' # R
|
|
depends_on 'gobject_introspection' => :build
|
|
|
|
gnome
|
|
end
|