aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ruby-install.rb
blob: fbc3debd26e46704c621cc41cba0dd1cf2d2cb86 (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.1.4.tar.gz'
  sha1 '215454f6917fb4dc2d30b1a220c07be3eb76b0b4'

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

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