From f53d8836cd37c69da678a2d65700401af4ec214e Mon Sep 17 00:00:00 2001 From: FX Coudert Date: Fri, 4 Jan 2019 11:19:50 +0100 Subject: [PATCH] sdl_mixer: remove options --- Formula/sdl_mixer.rb | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Formula/sdl_mixer.rb b/Formula/sdl_mixer.rb index b1438c801c..18b4707a0b 100644 --- a/Formula/sdl_mixer.rb +++ b/Formula/sdl_mixer.rb @@ -18,9 +18,6 @@ class SdlMixer < Formula depends_on "libogg" depends_on "libvorbis" depends_on "sdl" - depends_on "flac" => :optional - depends_on "fluid-synth" => :optional - depends_on "smpeg" => :optional # Source file for sdl_mixer example resource "playwave" do @@ -39,10 +36,6 @@ class SdlMixer < Formula --disable-music-mod-shared ] - args << "--disable-music-fluidsynth-shared" if build.with? "fluid-synth" - args << "--disable-music-flac-shared" if build.with? "flac" - args << "--disable-music-mp3-shared" if build.with? "smpeg" - system "./configure", *args system "make", "install" end