homebrew-core/Formula/ranger.rb
Adam Vandenberg 8eaed4747a ranger 1.2.3
ranger is a free console file manager that gives you greater flexibility and a
good overview of your files without having to leave your *nix console. It
visualizes the directory tree in two dimensions: the directory hierarchy on
one, lists of files on the other, with a preview to the right so you know
where you'll be going.
2010-12-14 12:01:42 -08:00

15 lines
352 B
Ruby

require 'formula'
class Ranger <Formula
url 'http://nongnu.org/ranger/ranger-stable.tar.gz'
version '1.2.3'
homepage 'http://ranger.nongnu.org/'
md5 '11fda1144d85532786ddc59221147884'
def install
man1.install 'doc/ranger.1'
libexec.install ['ranger.py', 'ranger']
bin.mkpath
ln_s libexec+'ranger.py', bin+'ranger'
end
end