aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ruby-install.rb
blob: a3b8456ab6c20379bf05ea83781056f551b171f9 (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.3.2.tar.gz'
  sha1 '5561df9bb5d73677cf5193d27ec130f52c4e4755'

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

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