mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* Add unbuilt libxi to updater-libxi-1.8.2 * Add binary and fix building with CREW_CACHE_BUILD. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * updater-libxi-1.8.2: Package File Update Run on linux/386 container. * updater-libxi-1.8.2: Package File Update Run on linux/arm/v7 container. --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
29 lines
950 B
Ruby
29 lines
950 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Libxi < Autotools
|
|
description 'X.org libXi Client library for XInput'
|
|
homepage 'https://x.org/wiki/'
|
|
version '1.8.2'
|
|
license 'MIT and custom'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url "https://www.x.org/archive/individual/lib/libXi-#{version}.tar.gz"
|
|
source_sha256 '5542daec66febfeb6f51d57abfa915826efe2e3af57534f4105b82240ea3188d'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'b3e5642452b75fe976eae04dc4573b5924cba264033785ced61c934b7566cb88',
|
|
armv7l: 'b3e5642452b75fe976eae04dc4573b5924cba264033785ced61c934b7566cb88',
|
|
x86_64: 'a5cf0fb54f10f08851c562e2f9f60b5a87c3febee35c82cd9b53b267ebddfa2b'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'libbsd' # R
|
|
depends_on 'libx11' # R
|
|
depends_on 'libxau' # R
|
|
depends_on 'libxcb' # R
|
|
depends_on 'libxdmcp' # R
|
|
depends_on 'libxext' # R
|
|
depends_on 'libxfixes' => :build
|
|
depends_on 'xorg_proto' => :build
|
|
end
|