diff options
| author | Adam Vandenberg | 2011-03-22 11:17:30 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2011-03-22 11:17:30 -0700 |
| commit | 6ab54246002591f212c28841b783057417f37ef5 (patch) | |
| tree | 1bf434f20126f2bc91455c99acb72991ec453d1d /Library | |
| parent | 0189fe09cbd659d5b6a6cac1f64f74bb2768d661 (diff) | |
| download | homebrew-6ab54246002591f212c28841b783057417f37ef5.tar.bz2 | |
libcdio: add caveats about snow leopard builds
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/libcdio.rb | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Library/Formula/libcdio.rb b/Library/Formula/libcdio.rb index 719536141..47fa435c0 100644 --- a/Library/Formula/libcdio.rb +++ b/Library/Formula/libcdio.rb @@ -5,8 +5,18 @@ class Libcdio < Formula md5 '1c29b18e01ab2b966162bc727bf3c360' homepage 'http://www.gnu.org/software/libcdio/' + depends_on 'pkg-config' => :build + def install - system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking" + system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make install" end + + def caveats; <<-EOS.undent + On Snow Leopard 10.6.5 libcdio 0.82 doesn't build with the OSX drivers. + See: http://savannah.gnu.org/bugs/?30019 + + Attempting to force Darwin detection will cause IOKit build errors. + EOS + end end |
