homebrew-core/Formula/atf.rb
Joe Baldino 25fa72d201 atf 0.14
Closes Homebrew/homebrew#8189.

Signed-off-by: Joe Baldino <joe.baldino@comcast.net>
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-10-20 20:17:04 -05:00

15 lines
497 B
Ruby

require 'formula'
class Atf < Formula
url 'ftp://ftp.NetBSD.org/pub/NetBSD/misc/jmmv/atf/0.14/atf-0.14.tar.gz'
homepage 'http://www.netbsd.org/~jmmv/atf/index.html'
sha256 'bfdd26321f3e4d62254277a646b2df7ce113369c4a79090b8d77c2e9979eba7a'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--sysconfdir=#{etc}",
"--mandir=#{man}"
system "make install"
end
end