Merge pull request #77842 from dtzWill/feature/teeworlds-cmake-hooray

teeworlds: cmake instead of bam, oh joy! cleanup
This commit is contained in:
Will Dietz 2020-01-26 16:47:40 -06:00 committed by GitHub
commit 24f531a3ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
{ fetchFromGitHub, stdenv, bam, pkgconfig, python, alsaLib
{ fetchFromGitHub, stdenv, cmake, pkgconfig, python, alsaLib
, libX11, libGLU, SDL2, lua5_3, zlib, freetype, wavpack
}:
@ -21,35 +21,12 @@ stdenv.mkDerivation rec {
'#define DATA_DIR "${placeholder "out"}/share/teeworlds/data"'
'';
nativeBuildInputs = [ bam pkgconfig ];
configurePhase = ''
runHook preConfigure
bam config
runHook postConfigure
'';
buildPhase = ''
runHook preBuild
bam conf=release
runHook postBuild
'';
installPhase = ''
mkdir -p $out/bin $out/share/teeworlds
cp build/x86_64/release/teeworlds{,_srv} $out/bin
cp -r build/x86_64/release/data $out/share/teeworlds
'';
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [
python alsaLib libX11 libGLU SDL2 lua5_3 zlib freetype wavpack
];
postInstall = ''
mkdir -p $out/share/doc/teeworlds
cp -v *.txt $out/share/doc/teeworlds/
'';
meta = {
description = "Retro multiplayer shooter game";
@ -60,9 +37,9 @@ stdenv.mkDerivation rec {
Flag. You can even design your own maps!
'';
homepage = https://teeworlds.com/;
homepage = "https://teeworlds.com/";
license = "BSD-style, see `license.txt'";
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
platforms = ["x86_64-linux" "i686-linux"];
platforms = stdenv.lib.platforms.linux;
};
}