Add sdl-player

This commit is contained in:
Jeremy Soller 2018-12-30 11:03:44 -07:00
parent ea74ee1869
commit 649e1c70f8
No known key found for this signature in database
GPG Key ID: E988B49EE78A7FB1

View File

@ -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
}