blob: 0cb0e337d4dadb02eb140a8832be65206de185fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Ncdu < Formula
url 'http://dev.yorhel.nl/download/ncdu-1.7.tar.gz'
homepage 'http://dev.yorhel.nl/ncdu'
md5 '172047c29d232724cc62e773e82e592a'
def install
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end
|