blob: 6f2bd96b850a1e88c40c859279a521f35a22db41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class Lame < Formula
homepage 'http://lame.sourceforge.net/'
url 'http://downloads.sourceforge.net/sourceforge/lame/lame-3.99.5.tar.gz'
md5 '84835b313d4a8b68f5349816d33e07ce'
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-debug",
"--prefix=#{prefix}",
"--enable-nasm"
system "make install"
end
end
|