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

class RubyBuild < Formula
  homepage 'https://github.com/sstephenson/ruby-build'
  url 'https://github.com/sstephenson/ruby-build/tarball/v20120423'
  md5 'f2525a8930721a564b0cca15afd46ecf'

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

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