965d5291ac
Closes Homebrew/homebrew#33333. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
13 lines
364 B
Ruby
13 lines
364 B
Ruby
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
|