781abee841
madplay: migrate patch makeicns: migrate patch mp3info: migrate patch mpack: migrate patch newt: migrate patch nvi: migrate patches ogmtools: migrate patch orbit: migrate patches pdf2htmlex: reference secure link pdksh: migrate patch povray: migrate patches proctools: migrate patches pulseaudio: migrate patch sbcl: migrate patches swftools: migrate patch tinyproxy: migrate patch tinysvm: migrate patch trafshow: migrate patches uudeview: migrate patch webfs: migrate patch wordplay: migrate patch xsane: migrate patch
28 lines
882 B
Ruby
28 lines
882 B
Ruby
class Madplay < Formula
|
|
desc "MPEG Audio Decoder"
|
|
homepage "http://www.underbit.com/products/mad/"
|
|
url "https://downloads.sourceforge.net/project/mad/madplay/0.15.2b/madplay-0.15.2b.tar.gz"
|
|
sha256 "5a79c7516ff7560dffc6a14399a389432bc619c905b13d3b73da22fa65acede0"
|
|
|
|
depends_on "mad"
|
|
depends_on "libid3tag"
|
|
|
|
patch :p0 do
|
|
url "https://raw.githubusercontent.com/Homebrew/patches/f6c5992c/madplay/patch-audio_carbon.c"
|
|
sha256 "380e1a5ee3357fef46baa9ba442705433e044ae9e37eece52c5146f56da75647"
|
|
end
|
|
|
|
def install
|
|
args = %W[
|
|
--disable-debug
|
|
--disable-dependency-tracking
|
|
--prefix=#{prefix}
|
|
--mandir=#{man}
|
|
]
|
|
|
|
# Avoid "error: CPU you selected does not support x86-64 instruction set"
|
|
args << "--build=#{Hardware::CPU.arch_64_bit}" if MacOS.prefer_64_bit?
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
end
|
|
end
|