aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ranger.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2010-12-14 12:01:42 -0800
committerAdam Vandenberg2010-12-14 12:01:42 -0800
commitbba038659482824757fcc58402f9b0f48a7a77db (patch)
tree1656cb9de30764e2dc065d82c4e199236a78569e /Library/Formula/ranger.rb
parentc3809f460e3863a963ae183d8b2355ffa40d0d62 (diff)
downloadhomebrew-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.rb15
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