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