homebrew-core/Formula/acpica.rb

22 lines
646 B
Ruby
Raw Normal View History

2014-05-31 22:36:04 +00:00
require "formula"
class Acpica < Formula
2014-05-31 22:36:04 +00:00
homepage "https://www.acpica.org/"
head "https://github.com/acpica/acpica.git"
2014-06-29 03:22:12 +00:00
url "https://acpica.org/sites/acpica/files/acpica-unix2-20140627.tar.gz"
sha1 "091660ae47067b28b68ac843f06909f5183d15cc"
2014-06-29 03:47:43 +00:00
bottle do
cellar :any
sha1 "355fadcc05a553d6ce9e07ff3093c6656e9b3270" => :mavericks
sha1 "fd2dfabd50acb1952273d7d8981737f65112359e" => :mountain_lion
sha1 "f9969f8a4c60c82de1c1f51b96d32146e4f94a22" => :lion
end
def install
ENV.deparallelize
system "make", "HOST=_APPLE", "PREFIX=#{prefix}"
system "make", "install", "HOST=_APPLE", "PREFIX=#{prefix}"
end
end