aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJon Gretar Borgthorsson2010-07-29 13:15:00 +0000
committerAdam Vandenberg2010-08-05 06:53:13 -0700
commitc28c0fc576a34b543ecc5bdf331af9a68e063d63 (patch)
tree2e7160f1a6a24c80596f71d0a8f3e59e77d47ad7 /Library
parent5c7c8f54e06526a18f6686f4a5d14829fc3478ae (diff)
downloadhomebrew-c28c0fc576a34b543ecc5bdf331af9a68e063d63.tar.bz2
New formula: rebar
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
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