Commit 0f86cc22 authored by Damian Montero's avatar Damian Montero Committed by GitHub

Merge pull request #753 from revebla/master

Added ranger filemanager
parents 76ca7b4d 393514da
require 'package'
class Ranger < Package # the name of the package
version '1.8.1' # the current version of the package
description 'A VIM-inspired filemanager for the console.'
homepage 'http://ranger.nongnu.org/'
source_url 'https://github.com/ranger/ranger/archive/v1.8.1.tar.gz' # the source files for the package
source_sha1 '8948bc749cf91297da6dcf7b275a72d17a0302f3'
depends_on 'less'
depends_on 'ncurses'
depends_on 'python'
def self.build
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install" # the steps required to install the package
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment