Files
chromebrew/packages/acpica.rb
2025-12-28 05:56:37 +00:00

27 lines
666 B
Ruby

require 'package'
class Acpica < Package
description 'ACPI tools, including Intel ACPI Source Language compiler'
homepage 'https://www.intel.com/content/www/us/en/developer/topic-technology/open/acpica/overview.html'
version '20251212'
license 'GPL-2'
compatibility 'x86_64'
source_url 'https://github.com/acpica/acpica.git'
git_hashtag version
binary_compression 'tar.zst'
binary_sha256({
x86_64: '9c27c344d60ac98dbea070d64945c7b2cafa030f4e643648fca2e63715248d59'
})
depends_on 'glibc' # R
def self.build
system 'make'
end
def self.install
system "make PREFIX=#{CREW_PREFIX} DESTDIR=#{CREW_DEST_DIR} install"
end
end