Commit fae543f1 authored by lyxell's avatar lyxell Committed by GitHub

Merge pull request #431 from cstrouse/add-ncdu

Add ncdu (1.12) package
parents a9835efe 7825183f
require 'package'
class Ncdu < Package
version '1.12'
source_url 'https://dev.yorhel.nl/download/ncdu-1.12.tar.gz'
source_sha1 'b79b1c44784f334dca74d89a49f49274f14cfeef'
depends_on "ncurses_so"
def self.build
system "./configure --prefix=/usr/local CPPFLAGS=-I/usr/local/include/ncurses"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
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