homebrew-core/Formula/atf.rb

17 lines
444 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
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'
2013-11-28 08:44:59 +00:00
ENV.j1
system 'make install'
end
end