mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* Remove i686 compatibility from packages with dependencies incompatible with i686 * Remove armv7l compatibility from packages with dependencies incompatible with arvm7l * Abort builds/installs if the package has incompatible dependencies
20 lines
477 B
Ruby
20 lines
477 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_dbus_python < Pip
|
|
description 'libdbus language binding (wrapper) for CPython'
|
|
homepage 'https://gitlab.freedesktop.org/dbus/dbus-python'
|
|
@_ver = '1.2.18'
|
|
version "#{@_ver}-py3.12"
|
|
license 'MIT'
|
|
compatibility 'x86_64 aarch64 armv7l'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'autoconf_archive' => :build
|
|
depends_on 'dbus' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'glib' # R
|
|
depends_on 'python3' => :build
|
|
|
|
no_compile_needed
|
|
end
|