cf7c81afa0
Closes Homebrew/homebrew#18122. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
14 lines
352 B
Ruby
14 lines
352 B
Ruby
require 'formula'
|
|
|
|
class RubyBuild < Formula
|
|
homepage 'https://github.com/sstephenson/ruby-build'
|
|
url 'https://github.com/sstephenson/ruby-build/tarball/v20130227'
|
|
sha1 '5cdcc5552f2ffb11ea161c98250e4c6153202462'
|
|
|
|
head 'https://github.com/sstephenson/ruby-build.git'
|
|
|
|
def install
|
|
ENV['PREFIX'] = prefix
|
|
system "./install.sh"
|
|
end
|
|
end
|