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>
25 lines
819 B
Ruby
25 lines
819 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Xcb_util_xrm < Autotools
|
|
description 'XCB utility functions for the X resource manager'
|
|
homepage 'https://github.com/Airblader/xcb-util-xrm'
|
|
version '1.3-2'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
license 'MIT-with-advertising'
|
|
source_url 'https://github.com/Airblader/xcb-util-xrm.git'
|
|
git_hashtag "v#{version.split('-').first}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '95e5da6b9813e3395a3ee77aa34e47c966dc77e3f035b409fa09c862272db963',
|
|
armv7l: '95e5da6b9813e3395a3ee77aa34e47c966dc77e3f035b409fa09c862272db963',
|
|
x86_64: '0fba4c6710557d350cb45cecea726084294835f1b3c7e1887487e594d83a9aec'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'libbsd' # R
|
|
depends_on 'libx11' => :build
|
|
depends_on 'libxau' # R
|
|
depends_on 'libxcb' # R
|
|
end
|