aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJohn Wiegley2012-12-02 01:12:33 -0600
committerAdam Vandenberg2013-01-14 15:12:28 -0800
commitcb67cd9431bcce279a1ece79914277976b20c215 (patch)
tree912fea4f45426fab54a1c7ed1b8ce12642d45289 /Library
parent313efeae8a6d34b55ab943e0c013fd5cac4bc4b2 (diff)
downloadhomebrew-cb67cd9431bcce279a1ece79914277976b20c215.tar.bz2
prooftree 0.10
Closes #17038. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/prooftree.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Formula/prooftree.rb b/Library/Formula/prooftree.rb
new file mode 100644
index 000000000..09beb97d3
--- /dev/null
+++ b/Library/Formula/prooftree.rb
@@ -0,0 +1,20 @@
+require 'formula'
+
+class Prooftree < Formula
+ homepage 'http://askra.de/software/prooftree'
+ url 'http://askra.de/software/prooftree/releases/prooftree-0.10.tar.gz'
+ sha1 'ac9ba265062382109673320635d822f92e6a126c'
+
+ depends_on :x11
+ depends_on 'lablgtk'
+
+ def install
+ system "./configure", "--prefix=#{prefix}"
+ system "make"
+ system "make install"
+ end
+
+ def test
+ system "prooftree -help"
+ end
+end