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