homebrew-core/Formula/cdf.rb

14 lines
388 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Cdf < Formula
homepage 'http://bmp-plugins.berlios.de/misc/cdf/cdf.html'
2013-01-27 02:10:14 +00:00
url 'http://download.berlios.de/bmp-plugins/cdf-0.2.tar.gz'
sha1 '5f5d0c1f1003d9ad3c3cbbda1d8159e9fe10768a'
def install
2013-01-27 02:10:14 +00:00
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end