aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/acpica.rb
blob: 09e60e0da5a5269c0b13094f8be12ea765bfd5e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Acpica < Formula
  homepage 'https://www.acpica.org/'
  url 'https://acpica.org/sites/acpica/files/acpica-unix2-20130517.tar.gz'
  sha1 '527fd7c06d7cb7182dd2f3f9a1feb55e2271adc3'

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