aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/acpica.rb
blob: e8cf1773e2e5f5489c5090865e27dce05d0b8476 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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"

  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