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

class RubyInstall < Formula
  homepage 'https://github.com/postmodern/ruby-install#readme'
  url 'https://github.com/postmodern/ruby-install/archive/v0.4.2.tar.gz'
  sha1 'f5cb5be73f29a943b291e16926bb71af440eefb7'

  head 'https://github.com/postmodern/ruby-install.git'

  def install
    system 'make', 'install', "PREFIX=#{prefix}"
  end
end