crack-attack: enable sound support in the crack-attack game.

The --enable-sound ./configure option enables the sound support in crack-attack.
This commit enables the --enable-sound option, and adds a dependency on SDL_mixer.
The following files still have to be supplied by the user, due to licencing issues upstream:

~/.crack-attack/music/game.ogg
~/.crack-attack/music/gameover.ogg
~/.crack-attack/music/prelude.ogg
~/.crack-attack/music/youwin.ogg
~/.crack-attack/sounds/block_awaking.wav
~/.crack-attack/sounds/block_dying.wav
~/.crack-attack/sounds/block_fallen.wav
~/.crack-attack/sounds/countdown.wav
~/.crack-attack/sounds/garbage_fallen.wav
~/.crack-attack/sounds/garbage_shattering.wav

The crack-attack game will detect when these sound files are present, and use them as background music and sound effects.
This commit is contained in:
Georges Dupéron 2017-02-24 01:46:30 +01:00 committed by Samuel Leathers
parent fe9cefa7e4
commit 069535c503

View File

@ -1,4 +1,5 @@
{ stdenv, fetchurl, pkgconfig, gtk2, freeglut, SDL, mesa, libXi, libXmu}:
{ stdenv, fetchurl, autoreconfHook, pkgconfig, gtk2, freeglut, SDL, SDL_mixer
, mesa, libXi, libXmu}:
stdenv.mkDerivation {
name = "crack-attack-1.1.14";
@ -8,9 +9,9 @@ stdenv.mkDerivation {
sha256 = "1sakj9a2q05brpd7lkqxi8q30bccycdzd96ns00s6jbxrzjlijkm";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gtk2 freeglut SDL mesa libXi libXmu ];
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ gtk2 freeglut SDL SDL_mixer mesa libXi libXmu ];
configureFlags = [ "--enable-sound=yes" ];
hardeningDisable = [ "format" ];
meta = {