acpica 20130517

Closes Homebrew/homebrew#19913.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Liang Qi 2013-05-18 20:37:02 +02:00 committed by Adam Vandenberg
parent 444b77f279
commit d4f876d6e7
1 changed files with 13 additions and 0 deletions

13
Formula/acpica.rb Normal file
View File

@ -0,0 +1,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