homebrew-core/Formula/mpg123.rb

25 lines
670 B
Ruby

require 'formula'
class Mpg123 < Formula
homepage 'http://www.mpg123.de/'
url 'http://downloads.sourceforge.net/project/mpg123/mpg123/1.16.0/mpg123-1.16.0.tar.bz2'
mirror 'http://mpg123.orgis.org/download/mpg123-1.16.0.tar.bz2'
sha1 '73105629f8d4b9426ec9fe93455a8271a96c4ae4'
def install
args = ["--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
'--with-default-audio=coreaudio',
'--with-module-suffix=.so']
if MacOS.prefer_64_bit?
args << "--with-cpu=x86-64"
else
args << "--with-cpu=sse_alone"
end
system "./configure", *args
system "make install"
end
end