blob: 026a9079b70403ef9ae882deb1f3038d7d2fa272 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
require 'formula'
class Cdparanoia < Formula
url 'http://downloads.xiph.org/releases/cdparanoia/cdparanoia-III-10.2.src.tgz'
homepage 'http://www.xiph.org/paranoia/'
md5 'b304bbe8ab63373924a744eac9ebc652'
def patches
[
"http://trac.macports.org/export/70964/trunk/dports/audio/cdparanoia/files/osx_interface.patch",
"http://trac.macports.org/export/70964/trunk/dports/audio/cdparanoia/files/patch-paranoia_paranoia.c.10.4.diff"
]
end
def install
fails_with_llvm "\"File too small\" error while linking", :build => 2326
system "autoconf"
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}", "--mandir=#{man}"
system "make all"
system "make install"
end
end
|