homebrew-core/Formula/ruby-build.rb
Erik Michaels-Ober 61c292d77f ruby-build 20130222
* Upgraded to OpenSSL 1.0.1e
* Added a definition for JRuby 1.7.3
* Added a definition for 1.9.3-p392

Closes Homebrew/homebrew#18019.

Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
2013-02-22 12:53:10 -06:00

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/v20130222'
sha1 'c09ff3848404da177deb75ae5943ab97a5b35468'
head 'https://github.com/sstephenson/ruby-build.git'
def install
ENV['PREFIX'] = prefix
system "./install.sh"
end
end