aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-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