mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* libxdamage => 1.1.7 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * updater-libxdamage-1.1.7: Package File Update Run on linux/amd64 container. * updater-libxdamage-1.1.7: 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>
23 lines
706 B
Ruby
23 lines
706 B
Ruby
require 'buildsystems/meson'
|
|
|
|
class Libxdamage < Meson
|
|
description 'library for the X window system'
|
|
homepage 'https://x.org/wiki/'
|
|
version '1.1.7'
|
|
license 'MIT'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://gitlab.freedesktop.org/xorg/lib/libxdamage.git'
|
|
git_hashtag "libXdamage-#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '287f60fe7ff799b6af2eccc2a9d137f9920402e5359da4c5d2217d7e631011c6',
|
|
armv7l: '287f60fe7ff799b6af2eccc2a9d137f9920402e5359da4c5d2217d7e631011c6',
|
|
x86_64: 'c3dcb0193c433b72de5fea42a17bb6d1486a350f296e1f8a9cd7b75051a62748'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'libx11' # R
|
|
depends_on 'libxfixes' => :build
|
|
end
|