homebrew-core/Formula/acpica.rb

25 lines
822 B
Ruby
Raw Normal View History

class Acpica < Formula
desc "OS-independent implementation of the ACPI specification"
2014-05-31 22:36:04 +00:00
homepage "https://www.acpica.org/"
head "https://github.com/acpica/acpica.git"
url "https://acpica.org/sites/acpica/files/acpica-unix2-20150717.tar.gz"
sha256 "dd60f846ad8393d89d2cbadf362c6547c5e53405f5ee51097c90db3636f79e0a"
2014-06-29 03:47:43 +00:00
bottle do
cellar :any
2015-07-21 12:03:24 +00:00
sha256 "7fbe5d6e05d227b549b50469b6bc33713fbc82781db6c9491069667393e2b135" => :yosemite
sha256 "a484e1f4d6750e2a99ccba5680696da9f3bca0dbe47053bc37e609100afb3db3" => :mavericks
sha256 "5fcda590ea6dca0191e58604eedb6a03318964adf175502e56eda34174295628" => :mountain_lion
2014-06-29 03:47:43 +00:00
end
def install
ENV.deparallelize
system "make", "PREFIX=#{prefix}"
system "make", "install", "PREFIX=#{prefix}"
end
test do
system "#{bin}/acpihelp", "-u"
end
end