789ef57918
Closes Homebrew/homebrew#26712. Signed-off-by: Mike McQuaid <mike@mikemcquaid.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.0.tar.gz'
|
|
sha1 'b5d3e202abd90c748d56e14bf50e99c5e97d2ef3'
|
|
|
|
head 'https://github.com/postmodern/ruby-install.git'
|
|
|
|
def install
|
|
system 'make', 'install', "PREFIX=#{prefix}"
|
|
end
|
|
end
|