blob: a43a28fccd8ae27b92561f89b5ac9094fefd844f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class RubyBuild < Formula
homepage 'https://github.com/sstephenson/ruby-build'
url 'https://github.com/sstephenson/ruby-build/tarball/v20130222'
sha1 'c09ff3848404da177deb75ae5943ab97a5b35468'
head 'https://github.com/sstephenson/ruby-build.git'
def install
ENV['PREFIX'] = prefix
system "./install.sh"
end
end
|