homebrew-core/Formula/atf.rb
Sean Channel d03a2f92a0 atf 0.20
Closes Homebrew/homebrew#31828.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-08-23 16:22:43 -05:00

16 lines
444 B
Ruby

require 'formula'
class Atf < Formula
homepage 'https://github.com/jmmv/atf'
url 'https://github.com/jmmv/atf/releases/download/atf-0.20/atf-0.20.tar.gz'
sha1 '398baa9733f9136bb78c27d10a8fffd7810e678a'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--sysconfdir=#{etc}"
system 'make'
ENV.j1
system 'make install'
end
end