mpg123: style cleanup
This commit is contained in:
parent
bd66f9f581
commit
a7beaa947c
1 changed files with 8 additions and 5 deletions
|
@ -13,10 +13,13 @@ class Mpg123 < Formula
|
|||
end
|
||||
|
||||
def install
|
||||
args = ["--disable-debug", "--disable-dependency-tracking",
|
||||
"--prefix=#{prefix}",
|
||||
"--with-default-audio=coreaudio",
|
||||
"--with-module-suffix=.so"]
|
||||
args = %W[
|
||||
--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"
|
||||
|
@ -29,6 +32,6 @@ class Mpg123 < Formula
|
|||
end
|
||||
|
||||
test do
|
||||
system "#{bin}/mpg123", test_fixtures("test.mp3")
|
||||
system bin/"mpg123", test_fixtures("test.mp3")
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue