mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-21 04:14:17 +08:00
38 lines
651 B
Bash
38 lines
651 B
Bash
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 -static"
|
|
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
|
|
}
|