require 'formula' class Cdparanoia < Formula homepage 'http://www.xiph.org/paranoia/' url 'http://downloads.xiph.org/releases/cdparanoia/cdparanoia-III-10.2.src.tgz' sha1 '1901e20d3a370ca6afa4c76a9ef30d3f03044320' depends_on :autoconf fails_with :llvm do build 2326 cause '"File too small" error while linking' end def patches [ "https://trac.macports.org/export/70964/trunk/dports/audio/cdparanoia/files/osx_interface.patch", "https://trac.macports.org/export/70964/trunk/dports/audio/cdparanoia/files/patch-paranoia_paranoia.c.10.4.diff" ] end def install system "autoconf" # Libs are installed as keg-only because most software that searches for cdparanoia # will fail to link against it cleanly due to our patches system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--mandir=#{man}", "--libdir=#{libexec}" system "make all" system "make install" end end The missing package manager for OS X.
aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/csync.rb
blob: afc78a92cd9c44050f11983ff9b392784a81f1a9 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72