dc37c102e4
df means "colorized df". The main features of cdf are: customazable color schemes eye-friendly capacity bars most of such utils needs some 3rd party libraries, python interpreter and so on, while cdf written in pure C License: GPLv2 Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
352 B
Ruby
12 lines
352 B
Ruby
require 'formula'
|
|
|
|
class Cdf <Formula
|
|
url 'http://download.berlios.de/bmp-plugins/cdf-0.2.tar.gz'
|
|
homepage 'http://bmp-plugins.berlios.de/misc/cdf/cdf.html'
|
|
md5 '1afd130f6c562700e8ad05724c6e1a9d'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|