aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ruby-build.rb
blob: 10d06ec760bc4c3f3ac019609708973f2c3adb15 (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/v20120216'
  md5 'a65e73dee5929ffe4366352a9240f0b6'

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

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