aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/acpica.rb
blob: 34cafe930499d3aad1bd9bad3f4eda4a27b1af9c (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-20141107.tar.gz"
  sha1 "49e4cbfa39d84f8832cf82455112c868990ef340"

  bottle do
    cellar :any
    sha1 "67536b4f83b441486bc629290adf24ae1c068582" => :yosemite
    sha1 "10f7afd73ba977b10db461492344efa40860165d" => :mavericks
    sha1 "19b90793ec68a5c26a1add2cdabd6d6cd83b29de" => :mountain_lion
  end

  def install
    ENV.deparallelize
    system "make", "HOST=_APPLE", "PREFIX=#{prefix}"
    system "make", "install", "HOST=_APPLE", "PREFIX=#{prefix}"
  end
end