blob: 717201c810cb83b19e53706c9fc749d451f85877 (
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.0.tar.gz'
  sha1 '5e3044119248f3150d5faf3bbbf7bf48adfb2177'
  head 'https://github.com/postmodern/ruby-install.git'
  def install
    system 'make', 'install', "PREFIX=#{prefix}"
  end
end
  |