aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/lame.rb
blob: d369026cc4398e3bb6d5f80a37ded1d9ff9aa7c0 (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-398-2.tar.gz'
  @md5='719dae0ee675d0c16e0e89952930ed35'

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