aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJohn Wilger2010-08-24 15:17:02 -0700
committerAdam Vandenberg2010-11-03 07:21:10 -0700
commit2ebef7b3cb086e78274ca097c32ba387b1c64e9d (patch)
tree837040f974ea642b29bcb55863db4b514d9a4dd8 /Library/Formula
parentd7b90357a1cf9f838da2769007d2536cf618900d (diff)
downloadhomebrew-2ebef7b3cb086e78274ca097c32ba387b1c64e9d.tar.bz2
Added pgtap formula
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/pgtap.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/pgtap.rb b/Library/Formula/pgtap.rb
new file mode 100644
index 000000000..f239b3cd2
--- /dev/null
+++ b/Library/Formula/pgtap.rb
@@ -0,0 +1,16 @@
+require 'formula'
+
+class Pgtap <Formula
+ url 'http://pgfoundry.org/frs/download.php/2701/pgtap-0.24.tar.bz2'
+ homepage 'http://pgtap.org'
+ md5 '9d0360c87fca0ddf3ca9da49b9b71947'
+
+ depends_on 'postgresql'
+
+ skip_clean :all
+
+ def install
+ system "make install"
+ bin.install %w(bbin/pg_prove bbin/pg_tapgen)
+ end
+end