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