Files
chromebrew/packages/xinit.rb

34 lines
1.0 KiB
Ruby

require 'package'
class Xinit < Package
description 'The xinit package contains a usable script to start the xserver.'
homepage 'https://www.x.org/wiki/'
version '1.4.2'
license 'GPL-2'
compatibility 'aarch64 armv7l x86_64'
source_url 'https://www.x.org/archive/individual/app/xinit-1.4.2.tar.gz'
source_sha256 '9121c9162f6dedab1229a8c4ed4021c4d605699cb0da580ac2ee1b0c96b3f60e'
binary_compression 'tar.zst'
binary_sha256({
aarch64: '23c169a3f7662628d1ee072ddb5e9275705d4625f7a32dc97addea86d2221140',
armv7l: '23c169a3f7662628d1ee072ddb5e9275705d4625f7a32dc97addea86d2221140',
x86_64: '39b6cdc11b9bbef6850969fa9f9d1e445b5eee7f377658927818b371d4928dc0'
})
depends_on 'xauth' # L
depends_on 'xterm' # L
depends_on 'glibc' # R
depends_on 'libx11' # R
def self.build
system '[ -x configure ] || NOCONFIGURE=1 ./autogen.sh'
system "./configure #{CREW_CONFIGURE_OPTIONS}"
system 'make'
end
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
end