mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
* modernize package Signed-off-by: Satadru Pramanik <satadru@gmail.com> * updater-libxinerama-1.1.5: Package File Update Run on linux/amd64 container. * updater-libxinerama-1.1.5: Package File Update Run on linux/arm/v7 container. --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
25 lines
888 B
Ruby
25 lines
888 B
Ruby
require 'buildsystems/meson'
|
|
|
|
class Libxinerama < Meson
|
|
description 'Xorg library, Xinerama is an X11 extension which provides support for extending a desktop across multiple displays.'
|
|
homepage 'https://www.x.org/wiki/'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
license 'MIT'
|
|
version '1.1.5-cc22c2f'
|
|
source_url 'https://gitlab.freedesktop.org/xorg/lib/libxinerama.git'
|
|
git_hashtag 'cc22c2f60c3862482562955116d5455263b443dc'
|
|
# git_hashtag "libXinerama-#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '480252174b8199236c1ccc71e051a546c1f567dbde2c80d722ec14e01025ea61',
|
|
armv7l: '480252174b8199236c1ccc71e051a546c1f567dbde2c80d722ec14e01025ea61',
|
|
x86_64: 'f8b61f71f6b0c957135c4a337302b9cbfa5e3fccc01f66365cd53238c6484a3a'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'libx11' # R
|
|
depends_on 'libxcb' => :build
|
|
depends_on 'libxext' # R
|
|
end
|