4ed5059a7a
Closes Homebrew/homebrew#27178. Signed-off-by: Brett Koonce <koonce@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.4.1.tar.gz'
|
|
sha1 '8a62fa5e551101d433cf25bd67c06d47d00c3ab8'
|
|
|
|
head 'https://github.com/postmodern/ruby-install.git'
|
|
|
|
def install
|
|
system 'make', 'install', "PREFIX=#{prefix}"
|
|
end
|
|
end
|