New formula: atf

The Automated Testing Framework (ATF) is a collection of libraries and
utilities designed to ease unattended application testing in the hands of
developers and end users of a specific piece of software.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Tojek Anselm 2010-06-22 15:20:02 -07:00 committed by Adam Vandenberg
parent 270ccf42b2
commit 0cdaae4e1b
1 changed files with 16 additions and 0 deletions

16
Formula/atf.rb Normal file
View File

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