sdl: remove unneeded inreplace method

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
master
Jack Nagel 2012-04-15 15:31:05 -05:00
parent d68d97bb4b
commit 979e03ec84
1 changed files with 4 additions and 8 deletions

View File

@ -12,19 +12,15 @@ class Sdl < Formula
depends_on "libtool" => :build
end
# we have to do this because most build scripts assume that all sdl modules
# are installed to the same prefix. Consequently SDL stuff cannot be
# keg-only but I doubt that will be needed.
def self.use_homebrew_prefix files
inreplace files, '@prefix@', HOMEBREW_PREFIX
end
def options
[['--universal', 'Build universal binaries.']]
end
def install
Sdl.use_homebrew_prefix %w[sdl.pc.in sdl-config.in]
# we have to do this because most build scripts assume that all sdl modules
# are installed to the same prefix. Consequently SDL stuff cannot be
# keg-only but I doubt that will be needed.
inreplace %w[sdl.pc.in sdl-config.in], '@prefix@', HOMEBREW_PREFIX
ENV.universal_binary if ARGV.build_universal?