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
parent
270ccf42b2
commit
0cdaae4e1b
|
@ -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
|
Loading…
Reference in New Issue