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:
parent
58e8c234ca
commit
8dc91cc8da
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue