From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:44408) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1io3R2-0005VI-ID for guix-patches@gnu.org; Sun, 05 Jan 2020 05:47:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1io3R1-0002rX-9u for guix-patches@gnu.org; Sun, 05 Jan 2020 05:47:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:37746) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1io3R1-0002rT-6t for guix-patches@gnu.org; Sun, 05 Jan 2020 05:47:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1io3R1-0007L6-5P for guix-patches@gnu.org; Sun, 05 Jan 2020 05:47:03 -0500 Subject: [bug#38941] [PATCH 4/5] gnu: sdl-mixer: Enable fluidsynth MIDI backend. Resent-Message-ID: From: Timotej Lazar Date: Sun, 5 Jan 2020 11:45:50 +0100 Message-Id: <20200105104551.16961-4-timotej.lazar@araneo.si> In-Reply-To: <20200105104551.16961-1-timotej.lazar@araneo.si> References: <20200105104551.16961-1-timotej.lazar@araneo.si> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 38941@debbugs.gnu.org Cc: Timotej Lazar * gnu/packages/sdl.scm (sdl-mixer)[inputs]: Add fluidsynth and alphabetize. [arguments]: Reformat. --- gnu/packages/sdl.scm | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/gnu/packages/sdl.scm b/gnu/packages/sdl.scm index d441040cd6..80f3da9327 100644 --- a/gnu/packages/sdl.scm +++ b/gnu/packages/sdl.scm @@ -262,20 +262,21 @@ WEBP, XCF, XPM, and XV.") "0alrhqgm40p4c92s26mimg9cm1y7rzr6m0p49687jxd9g6130i0n")))) (build-system gnu-build-system) (outputs '("out" "debug")) - ;; no check target - ;; use libmad instead of smpeg - ;; explicitly link against shared libraries instead of dlopening them - (arguments `(#:tests? #f - #:configure-flags '("--enable-music-mp3-mad-gpl" - "--disable-music-mod-shared" - "--disable-music-fluidsynth-shared" - "--disable-music-ogg-shared" - "--disable-music-flac-shared"))) - (inputs `(("libvorbis" ,libvorbis) - ("libflac" ,flac) - ("libmad" ,libmad) - ("libmikmod" ,libmikmod))) - ;; FIXME: Add libfluidsynth + (arguments + `(#:tests? #f ; No check target. + #:configure-flags + '("--enable-music-mp3-mad-gpl" ; Use libmad instead of smpeg. + ;; Explicitly link against shared libraries instead of dlopening them. + "--disable-music-flac-shared" + "--disable-music-fluidsynth-shared" + "--disable-music-mod-shared" + "--disable-music-ogg-shared"))) + (inputs + `(("fluidsynth" ,fluidsynth) + ("libflac" ,flac) + ("libmad" ,libmad) + ("libmikmod" ,libmikmod) + ("libvorbis" ,libvorbis))) (propagated-inputs `(("sdl" ,sdl))) (synopsis "SDL multi-channel audio mixer library") (description "SDL_mixer is a multi-channel audio mixer library for SDL. -- 2.24.1