0cdaae4e1b
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>
16 lines
425 B
Ruby
16 lines
425 B
Ruby
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
|