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