aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ruby-install.rb
blob: 7a3fa944d007f890289b9184b7f99ac5a495d1e6 (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.1.tar.gz'
  sha1 '8a62fa5e551101d433cf25bd67c06d47d00c3ab8'

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

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