mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -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
871 B
Ruby
24 lines
871 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Xcb_util_renderutil < Autotools
|
|
description 'The xcb-util-renderutil package provides additional extensions to the XCB library'
|
|
homepage 'https://xcb.freedesktop.org/'
|
|
version '0.3.10'
|
|
compatibility 'all'
|
|
license 'MIT-with-advertising'
|
|
source_url 'https://gitlab.freedesktop.org/xorg/lib/libxcb-render-util.git'
|
|
git_hashtag "xcb-util-renderutil-#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '8bef0641c124c63ab43a5258fff69061d5c29215dba6435f6bd198a0f962f9a6',
|
|
armv7l: '8bef0641c124c63ab43a5258fff69061d5c29215dba6435f6bd198a0f962f9a6',
|
|
i686: 'd58020baa86070d0ba6cf6299d2b19cfd7660182781a7dcf703a2b905dd86031',
|
|
x86_64: '5d656eec964bedb059c208b15a069027d3921795c2e1cc2f219b7fd4e09536c4'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'libbsd' # R
|
|
depends_on 'libxau' # R
|
|
end
|