homebrew-core/Formula/z.rb
Zhiming Wang 97516b496b z: replace brew --prefix call with fixed path
Closes #7649.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2016-12-09 10:05:03 +00:00

21 lines
554 B
Ruby

class Z < Formula
desc "Tracks most-used directories to make cd smarter"
homepage "https://github.com/rupa/z"
url "https://github.com/rupa/z/archive/v1.9.tar.gz"
sha256 "e2860e4f65770e02297ca4ca08ec1ee623a658bd9cc1acddbbe5ad22e1de70a7"
head "https://github.com/rupa/z.git"
bottle :unneeded
def install
(prefix/"etc/profile.d").install "z.sh"
man1.install "z.1"
end
def caveats; <<-EOS.undent
For Bash or Zsh, put something like this in your $HOME/.bashrc or $HOME/.zshrc:
. #{etc}/profile.d/z.sh
EOS
end
end