f32f84dcb7
Closes Homebrew/homebrew#19910. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
17 lines
442 B
Ruby
17 lines
442 B
Ruby
require 'formula'
|
|
|
|
class RubyBuild < Formula
|
|
homepage 'https://github.com/sstephenson/ruby-build'
|
|
url 'https://github.com/sstephenson/ruby-build/archive/v20130518.tar.gz'
|
|
sha1 '291bbadb2cf1201c976862da3a9da0a8300816f3'
|
|
|
|
head 'https://github.com/sstephenson/ruby-build.git'
|
|
|
|
depends_on 'autoconf' => :recommended
|
|
depends_on 'pkg-config' => :recommended
|
|
|
|
def install
|
|
ENV['PREFIX'] = prefix
|
|
system "./install.sh"
|
|
end
|
|
end
|