homebrew-core/Formula/fondu.rb

15 lines
400 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Fondu < Formula
url 'http://fondu.sourceforge.net/fondu_src-060102.tgz'
md5 'e20861beacddc1ab392bef7813641bf8'
homepage 'http://fondu.sourceforge.net/'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make"
bin.install ['fondu', 'ufond']
man1.install ['fondu.1', 'ufond.1']
end
end