homebrew-core/Formula/atf.rb

17 lines
433 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Atf < Formula
homepage 'http://code.google.com/p/kyua/wiki/ATF'
2013-11-28 08:44:59 +00:00
url 'http://kyua.googlecode.com/files/atf-0.18.tar.gz'
sha1 '2dedc4472e0cd8b30cb54d3c96984ed7a0a1c61c'
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