aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ruby-build.rb
blob: 1d910b5517169794936dbfc37502994c72f01e47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class RubyBuild < Formula
  url 'https://github.com/sstephenson/ruby-build/tarball/v20110914'
  homepage 'https://github.com/sstephenson/ruby-build'
  md5 '8056b7b157c4c660fab8d1324cb02540'

  head 'https://github.com/sstephenson/ruby-build.git'

  def install
    ENV['PREFIX'] = prefix
    system "./install.sh"
  end
end