homebrew-core/Formula/ruby-install.rb
Shannon Skipper 21b0287798 ruby-install 0.3.3
### 0.3.3 / 2013-12-04

* Add support for the MacPorts package manager (@havenwood).
* Fixed extglob pattern in `fetch`.

Closes Homebrew/homebrew#24938.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-12-04 19:56:14 -08:00

13 lines
364 B
Ruby

require 'formula'
class RubyInstall < Formula
homepage 'https://github.com/postmodern/ruby-install#readme'
url 'https://github.com/postmodern/ruby-install/archive/v0.3.3.tar.gz'
sha1 '9a7a5a8890468acf3d507cca5a2bdb9a53383726'
head 'https://github.com/postmodern/ruby-install.git'
def install
system 'make', 'install', "PREFIX=#{prefix}"
end
end