aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/rebar.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/rebar.rb b/Library/Formula/rebar.rb
new file mode 100644
index 000000000..6cc9c165e
--- /dev/null
+++ b/Library/Formula/rebar.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Rebar <Formula
+ head 'http://hg.basho.com/rebar/get/tip.tar.gz'
+ homepage 'http://hg.basho.com/rebar/'
+
+ depends_on 'erlang'
+
+ def install
+ system "./bootstrap"
+ bin.install "rebar"
+ end
+end