aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ruby-build.rb
blob: d98376ad808b5d33090d206da2729e129e676072 (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/v20130227'
  sha1 '5cdcc5552f2ffb11ea161c98250e4c6153202462'

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

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