homebrew-core/Formula/acpica.rb

15 lines
414 B
Ruby

require "formula"
class Acpica < Formula
homepage "https://www.acpica.org/"
head "https://github.com/acpica/acpica.git"
url "https://acpica.org/sites/acpica/files/acpica-unix2-20140627.tar.gz"
sha1 "091660ae47067b28b68ac843f06909f5183d15cc"
def install
ENV.deparallelize
system "make", "HOST=_APPLE", "PREFIX=#{prefix}"
system "make", "install", "HOST=_APPLE", "PREFIX=#{prefix}"
end
end