mp3check: install to correct prefix

Fixes Homebrew/homebrew#23183.
This commit is contained in:
Misty De Meo 2013-10-10 10:34:01 -07:00
parent e803e93a35
commit 53af6a9117

View file

@ -7,8 +7,9 @@ class Mp3check < Formula
def install
ENV.deparallelize
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
# The makefile's install target is kinda iffy, but there's
# only one file to install so it's easier to do it ourselves
system "make"
bin.install 'mp3check'
end
end