2c39204972
Closes Homebrew/homebrew#21726. Signed-off-by: Adam Vandenberg <flangy@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.3.0.tar.gz'
|
|
sha1 '5e3044119248f3150d5faf3bbbf7bf48adfb2177'
|
|
|
|
head 'https://github.com/postmodern/ruby-install.git'
|
|
|
|
def install
|
|
system 'make', 'install', "PREFIX=#{prefix}"
|
|
end
|
|
end
|