diff options
| author | John Wiegley | 2012-12-02 01:12:33 -0600 |
|---|---|---|
| committer | Adam Vandenberg | 2013-01-14 15:12:28 -0800 |
| commit | cb67cd9431bcce279a1ece79914277976b20c215 (patch) | |
| tree | 912fea4f45426fab54a1c7ed1b8ce12642d45289 /Library | |
| parent | 313efeae8a6d34b55ab943e0c013fd5cac4bc4b2 (diff) | |
| download | homebrew-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.rb | 20 |
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 |
