aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cdf.rb
blob: 8b8342129ce8d29f7c04beba37e4e2685661b96b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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'
  sha1 '5f5d0c1f1003d9ad3c3cbbda1d8159e9fe10768a'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make install"
  end
end