2010-01-08 19:27:01 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class TwoLame < Formula
|
2010-01-08 19:27:01 +00:00
|
|
|
url 'http://downloads.sourceforge.net/twolame/twolame-0.3.12.tar.gz'
|
|
|
|
homepage 'http://www.twolame.org/'
|
|
|
|
md5 'd38c3ead5ac49b7425c1a9ef91126a35'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|