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 Homebrew/homebrew#7228.

Signed-off-by: Max Howell <max@methylblue.com>
This commit is contained in:
Misty De Meo 2011-08-26 09:39:51 -05:00 committed by Max Howell
parent 58e8c234ca
commit 8dc91cc8da

View file

@ -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