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

class Lame < Formula
  homepage 'http://lame.sourceforge.net/'
  url 'http://downloads.sourceforge.net/sourceforge/lame/lame-3.99.3.tar.gz'
  md5 '5ad31e33e70455eb3a7b79a5dd934fce'

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