homebrew-core/Formula/ruby-build.rb

15 lines
343 B
Ruby
Raw Normal View History

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