aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ruby-install.rb
blob: 5c6b440443da57f0ef912a7b2ab9f9932d36f34e (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.5.0.tar.gz'
  sha1 'd8061e46fe2ea40f867e219cdd7d28fea24f47ca'

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

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