mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add unbuilt updated pip packages to updates-2025-03-17-00-20 * Add built packages for linux/386 to updates-2025-03-17-00-20 * Add built packages for linux/amd64 to updates-2025-03-17-00-20 * Add built packages for linux/arm/v7 to updates-2025-03-17-00-20 --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
34 lines
1.2 KiB
Ruby
34 lines
1.2 KiB
Ruby
# Only a meson build creates the pkgconfig files needed for other builds.
|
|
require 'buildsystems/meson'
|
|
|
|
class Py3_pygobject < Meson
|
|
description 'PyGObject is a Python package which provides bindings for GObject based libraries such as GTK+, GStreamer, WebKitGTK+, GLib, GIO and many more.'
|
|
homepage 'https://pygobject.gnome.org/'
|
|
version "3.52.3-#{CREW_PY_VER}"
|
|
license 'LGPL-2.1+'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://gitlab.gnome.org/GNOME/pygobject.git'
|
|
git_hashtag version.split('-').first
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'd598e073a57784f700abc041f65fcf9f8dc7d655fa70f20a4a8f7163631f64bd',
|
|
armv7l: 'd598e073a57784f700abc041f65fcf9f8dc7d655fa70f20a4a8f7163631f64bd',
|
|
x86_64: 'e218073a8008f938622be908f2f9e06bf889fc48ed1e0eb3be7d82c045ddae16'
|
|
})
|
|
|
|
depends_on 'cairo' # R
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'glib' # R
|
|
depends_on 'gobject_introspection' # R
|
|
depends_on 'harfbuzz' # R
|
|
depends_on 'libffi' # R
|
|
depends_on 'py3_meson_python' => :build
|
|
depends_on 'py3_pycairo' => :build
|
|
depends_on 'python3' # R
|
|
depends_on 'wayland' => :build
|
|
|
|
meson_options '-Dtests=false'
|
|
end
|