aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ruby-build.rb
blob: 3cdd8b2bb07f411419b5cb7ca864be74ed5a2c44 (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/v20110928'
  homepage 'https://github.com/sstephenson/ruby-build'
  md5 '2f3cd506d0bb7a7e2cb6bbb36c81fdca'

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

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