Files
chromebrew/packages/rendercheck.rb
Maximilian Downey Twiss f6b6cab229 Rename autotools constants to fall in line with the rest of crew (#10442)
* Rename CREW_OPTIONS to CREW_CONFIGURE_OPTIONS

* Rename build_extras and install_extras to configure_build_extras and configure_install_extras
2024-09-09 18:21:58 -05:00

29 lines
987 B
Ruby

require 'package'
class Rendercheck < Package
description 'rendercheck is a program to test a Render extension implementation against separate calculations of expected output.'
homepage 'https://www.x.org/wiki/'
version '1.5'
license 'MIT'
compatibility 'all'
source_url 'https://x.org/archive/individual/app/rendercheck-1.5.tar.bz2'
source_sha256 '00605679436d65ccf9a6f1f1cb206df7a2e8b28a7821e867922d2b14b009f1cc'
binary_compression 'tar.xz'
binary_sha256({
aarch64: '90b0f792889946717870f1497e523c3229cb5840feaf1152da6a125710310697',
armv7l: '90b0f792889946717870f1497e523c3229cb5840feaf1152da6a125710310697',
i686: 'b0ca933742e0d17470c8f1d3e66dac65c5a03ac4d490a477e6e59c700b08b1b7',
x86_64: '7c29b512ecdf2472ade1bce7f7b7491cd8f828a1146061fa8e2e512de6dd1dc9'
})
def self.build
system "./configure #{CREW_CONFIGURE_OPTIONS}"
system 'make'
end
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
end