aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/two-lame.rb
blob: b19394b12aac997e76a07b06575984ce0d5c75ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class TwoLame <Formula
  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