a9c4d7cc0c
Closes Homebrew/homebrew#14219. Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
14 lines
343 B
Ruby
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/v20120815'
|
|
md5 '0ad932c7809a012894a5e3875abdf196'
|
|
|
|
head 'https://github.com/sstephenson/ruby-build.git'
|
|
|
|
def install
|
|
ENV['PREFIX'] = prefix
|
|
system "./install.sh"
|
|
end
|
|
end
|