homebrew-core/Formula/acpica.rb

22 lines
650 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"
url "https://acpica.org/sites/acpica/files/acpica-unix2-20141107.tar.gz"
sha1 "49e4cbfa39d84f8832cf82455112c868990ef340"
2014-06-29 03:47:43 +00:00
bottle do
cellar :any
2014-11-18 11:42:01 +00:00
sha1 "751442a403e1b2110fd776f23ec24f78da235b97" => :yosemite
sha1 "647e732c34b8118197dff74efc2307b4f78da89d" => :mavericks
sha1 "b4c558d517c81251239025b1414a913d690ea8f2" => :mountain_lion
2014-06-29 03:47:43 +00:00
end
def install
ENV.deparallelize
system "make", "HOST=_APPLE", "PREFIX=#{prefix}"
system "make", "install", "HOST=_APPLE", "PREFIX=#{prefix}"
end
end