mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
* More X updates Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust xbitmaps source Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add xcb_util_image build Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust xauth source Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust xauth build and version detection. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add gperf Signed-off-by: Satadru Pramanik <satadru@gmail.com> * x_updates: Build Run on linux/386. * x_updates: Package File Update Run on linux/386 container. * x_updates: Package File Update Run on linux/amd64 container. * x_updates: Package File Update Run on linux/arm/v7 container. * Add more xcb updates Signed-off-by: Satadru Pramanik <satadru@gmail.com> * x_updates: Package File Update Run on linux/386 container. * Updte xcb_util_xrm Signed-off-by: Satadru Pramanik <satadru@gmail.com> * x_updates: Package File Update Run on linux/arm/v7 container. * fix typo Signed-off-by: Satadru Pramanik <satadru@gmail.com> * remove filelist Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
24 lines
897 B
Ruby
24 lines
897 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Xcb_util_keysyms < Autotools
|
|
description 'The xcb-util-keysyms package contains a library for handling standard X key constants and conversion to/from keycodes.'
|
|
homepage 'https://xcb.freedesktop.org/'
|
|
version '0.4.1'
|
|
compatibility 'all'
|
|
license 'MIT-with-advertising'
|
|
source_url 'https://gitlab.freedesktop.org/xorg/lib/libxcb-keysyms.git'
|
|
git_hashtag "xcb-util-keysyms-#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '2e1aab68b9fc16c6bbdde2a96a88c4d70e4f95ca7c7c6bad64999a4c381582fe',
|
|
armv7l: '2e1aab68b9fc16c6bbdde2a96a88c4d70e4f95ca7c7c6bad64999a4c381582fe',
|
|
i686: 'e0564edbf2534623934a840c8500b7df660b25f91196d548f9c7c199a0196793',
|
|
x86_64: 'a8905397714291fcfd8d8efd81fcd17dea59e8ae41a83da850754c2b16ed4737'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'libbsd' # R
|
|
depends_on 'libxau' # R
|
|
end
|