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