homebrew-core/Formula/ruby-build.rb
Erich Kist 9d591f1c1d ruby-build 20120216
Closes Homebrew/homebrew#10241.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-02-16 19:55:11 -08:00

14 lines
343 B
Ruby

require 'formula'
class RubyBuild < Formula
homepage 'https://github.com/sstephenson/ruby-build'
url 'https://github.com/sstephenson/ruby-build/tarball/v20120216'
md5 'a65e73dee5929ffe4366352a9240f0b6'
head 'https://github.com/sstephenson/ruby-build.git'
def install
ENV['PREFIX'] = prefix
system "./install.sh"
end
end