aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/atf.rb
diff options
context:
space:
mode:
authorTojek Anselm2010-06-22 15:20:02 -0700
committerAdam Vandenberg2010-06-22 22:02:50 -0700
commit15cc9ae56bb355669404ad23e9c6eed274193b6d (patch)
treefd6ec401d41947cbb3d35f3222cc735da939d62b /Library/Formula/atf.rb
parent6abc8df1c1307fd0a02da331e69c54ffcd96f1ed (diff)
downloadhomebrew-15cc9ae56bb355669404ad23e9c6eed274193b6d.tar.bz2
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>
Diffstat (limited to 'Library/Formula/atf.rb')
-rw-r--r--Library/Formula/atf.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/atf.rb b/Library/Formula/atf.rb
new file mode 100644
index 000000000..53f8d8b75
--- /dev/null
+++ b/Library/Formula/atf.rb
@@ -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