diff options
| author | Adam Vandenberg | 2010-12-14 12:01:42 -0800 | 
|---|---|---|
| committer | Adam Vandenberg | 2010-12-14 12:01:42 -0800 | 
| commit | bba038659482824757fcc58402f9b0f48a7a77db (patch) | |
| tree | 1656cb9de30764e2dc065d82c4e199236a78569e /Library/Formula/ranger.rb | |
| parent | c3809f460e3863a963ae183d8b2355ffa40d0d62 (diff) | |
| download | homebrew-bba038659482824757fcc58402f9b0f48a7a77db.tar.bz2 | |
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.
Diffstat (limited to 'Library/Formula/ranger.rb')
| -rw-r--r-- | Library/Formula/ranger.rb | 15 | 
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/ranger.rb b/Library/Formula/ranger.rb new file mode 100644 index 000000000..79eccc5d5 --- /dev/null +++ b/Library/Formula/ranger.rb @@ -0,0 +1,15 @@ +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  | 
