2013-05-18 18:37:02 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Acpica < Formula
|
|
|
|
homepage 'https://www.acpica.org/'
|
2013-09-15 15:16:21 +00:00
|
|
|
url 'https://acpica.org/sites/acpica/files/acpica-unix2-20130823.tar.gz'
|
|
|
|
sha1 'a10f2a3708d02074e283ee105dd3fcc6e1940c3e'
|
|
|
|
|
|
|
|
head 'https://github.com/acpica/acpica.git'
|
2013-05-18 18:37:02 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
ENV.deparallelize
|
|
|
|
system "make", "HOST=_APPLE", "PREFIX=#{prefix}"
|
|
|
|
system "make", "install", "HOST=_APPLE", "PREFIX=#{prefix}"
|
|
|
|
end
|
|
|
|
end
|