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