mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* Update libice, libsm, libx11, libxau Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Remove keys from env hash if they are blank. (This fixes the libx11 build.) Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add binaries and add dbus update Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add libsm builds Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust libice compatibility. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * dbus: Package File Update Run on linux/386 container. * Adjust linter handoff workflow. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint const.rb Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust workflow to add reviewers. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Remove i686 libice manifest. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
23 lines
722 B
Ruby
23 lines
722 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Libxau < Autotools
|
|
description 'xau library for libX11'
|
|
homepage 'https://x.org/wiki/'
|
|
version '1.0.12'
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'https://gitlab.freedesktop.org/xorg/lib/libxau.git'
|
|
git_hashtag "libXau-#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'd2d4b68dad1338995d5e858b83532a7329a4ffc99203ff0ba820ce022c6d4858',
|
|
armv7l: 'd2d4b68dad1338995d5e858b83532a7329a4ffc99203ff0ba820ce022c6d4858',
|
|
i686: 'c1f87fde13a850c3ccf7116d7d5648642eafd6b32047a9962ec08726b04f4d70',
|
|
x86_64: '6adc15c51c5e1c26c9a1d728a2370a1578faba40a74cbee925a181d01f939aa6'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'xorg_proto'
|
|
end
|