homebrew-core/Formula/chruby-fish.rb
Jean Mertz 9234182a8a chruby-fish 0.6.0
Thin wrapper around `chruby` to make it work with the Fish shell.

See the chruby-fish documentation for more details:

    https://github.com/JeanMertz/chruby-fish#readme

Closes Homebrew/homebrew#28623.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-05-21 14:16:45 -07:00

14 lines
395 B
Ruby

require "formula"
class ChrubyFish < Formula
homepage "https://github.com/JeanMertz/chruby-fish#readme"
head "https://github.com/JeanMertz/chruby-fish.git"
url "https://github.com/JeanMertz/chruby-fish/archive/v0.6.0.tar.gz"
sha1 "e8262283018137db89ba5031ec088a5df3df19d0"
depends_on "chruby" => :recommended
def install
system "make", "install", "PREFIX=#{prefix}"
end
end