aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/wrangler.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/wrangler.rb b/Library/Formula/wrangler.rb
new file mode 100644
index 000000000..08322ea7c
--- /dev/null
+++ b/Library/Formula/wrangler.rb
@@ -0,0 +1,17 @@
+require 'brewkit'
+
+class Wrangler <Formula
+ @url='http://www.cs.kent.ac.uk/projects/forse/wrangler/wrangler-0.8/wrangler-0.8.1.tar.gz'
+ @homepage='http://www.cs.kent.ac.uk/projects/forse/'
+ @md5='0ddc9308eb82382d11d0a6df486050b5'
+
+ def deps
+ BinaryDep.new 'erlang'
+ end
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make"
+ system "make install"
+ end
+end