blob: 4b5f713671ff20b7d4e7b274f5fa52fdc82af0b2 (
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.3.tar.gz'
sha1 '9a7a5a8890468acf3d507cca5a2bdb9a53383726'
head 'https://github.com/postmodern/ruby-install.git'
def install
system 'make', 'install', "PREFIX=#{prefix}"
end
end
|