aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cdparanoia.rb
diff options
context:
space:
mode:
authorMisty De Meo2011-08-26 09:39:51 -0500
committerMax Howell2011-08-27 19:00:44 +0100
commit19ddb2954ee188b8cfe7c0f901ce6f74f6809179 (patch)
tree26e8112fbf62a9a126561ca3fd5052f78dea9a30 /Library/Formula/cdparanoia.rb
parent123efb3977fa425ec102458f4328036e2a55d66c (diff)
downloadhomebrew-19ddb2954ee188b8cfe7c0f901ce6f74f6809179.tar.bz2
cdparanoia Install libs as keg-only
Our patches to cdparanoia mean that it doesn't build cleanly against software that expects the standard Linux version. Keeping those libs around in /usr/local/lib is a problem waiting to happen. Closes #7228. Signed-off-by: Max Howell <max@methylblue.com>
Diffstat (limited to 'Library/Formula/cdparanoia.rb')
-rw-r--r--Library/Formula/cdparanoia.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/cdparanoia.rb b/Library/Formula/cdparanoia.rb
index db0ae978d..c97922bc2 100644
--- a/Library/Formula/cdparanoia.rb
+++ b/Library/Formula/cdparanoia.rb
@@ -16,8 +16,10 @@ class Cdparanoia < Formula
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}"
+ "--prefix=#{prefix}", "--mandir=#{man}", "--libdir=#{prefix}/libexec"
system "make all"
system "make install"
end