mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -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
874 B
Ruby
24 lines
874 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Xcb_util_wm < Autotools
|
|
description 'The xcb-util-wm package contains libraries which provide client and window-manager helpers for EWMH and ICCCM.'
|
|
homepage 'https://xcb.freedesktop.org/'
|
|
version '0.4.2'
|
|
compatibility 'all'
|
|
license 'MIT-with-advertising'
|
|
source_url 'https://gitlab.freedesktop.org/xorg/lib/libxcb-wm.git'
|
|
git_hashtag "xcb-util-wm-#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'cd3f107f18b447d79b5b93d7ad040ff1fb9d111266749c2a95d7e01e533143fb',
|
|
armv7l: 'cd3f107f18b447d79b5b93d7ad040ff1fb9d111266749c2a95d7e01e533143fb',
|
|
i686: '5eeaccb04005b786d69e21f1edab01616e1875e3e617a9e7567da2e0d509db21',
|
|
x86_64: '927bb5dc470f70d8fbe5d2f690470ad15e13458ab8254c3e7e15df2c40385bf2'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'libbsd' # R
|
|
depends_on 'libxau' # R
|
|
end
|