blob: 245625c8ec58d21c5b2b563cbd2bed721840983e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
require 'formula'
class Madplay <Formula
url 'http://downloads.sourceforge.net/project/mad/madplay/0.15.2b/madplay-0.15.2b.tar.gz'
md5 '6814b47ceaa99880c754c5195aa1aac1'
def homepage
Formula.factory('mad').homepage
end
depends_on 'mad'
depends_on 'libid3tag'
def patches
{:p0 => "http://svn.macports.org/repository/macports/trunk/dports/audio/madplay/files/patch-audio_carbon.c"}
end
def install
configure_flags = ["--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"]
# Avoid "error: CPU you selected does not support x86-64 instruction set"
configure_flags << "--build=x86_64" if Hardware.is_64_bit? and MACOS_VERSION >= 10.6
system "./configure", *configure_flags
system "make install"
end
end
|