7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
14 lines
399 B
Ruby
14 lines
399 B
Ruby
require 'formula'
|
|
|
|
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
|