blob: 6cc9c165e8cbd57ac15d9a8085c142b5935ff1c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
 
  |