diff --git a/recipes/sdl-player/recipe.sh b/recipes/sdl-player/recipe.sh new file mode 100644 index 0000000000000000000000000000000000000000..5c145cd0966b5568e6cf7fe4a08bcbd0a2ab5851 --- /dev/null +++ b/recipes/sdl-player/recipe.sh @@ -0,0 +1,37 @@ +GIT=https://gitlab.redox-os.org/redox-os/sdl-player.git +BUILD_DEPENDS=(ffmpeg liborbital sdl zlib) + +function recipe_version { + echo "1.0.0" + skip=1 +} + +function recipe_update { + echo "skipping update" + skip=1 +} + +function recipe_build { + sysroot="$(realpath ../sysroot)" + export CPPFLAGS="-I$sysroot/include" + export LDFLAGS="-L$sysroot/lib" + make -j"$(nproc)" + skip=1 +} + +function recipe_test { + echo "skipping test" + skip=1 +} + +function recipe_clean { + make clean + skip=1 +} + +function recipe_stage { + dest="$(realpath $1)" + mkdir -pv "$dest/bin" + cp -v "player" "$dest/bin/sdl-player" + skip=1 +}