homebrew-core/Formula/cdf.rb
Mikael Hultgren dc37c102e4 New formula cdf
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>
2010-05-25 17:14:20 -07:00

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