Skip to content
Snippets Groups Projects
Commit de09a8e0 authored by Nagy Tibor's avatar Nagy Tibor
Browse files

Add vvvvvv recipe

parent c52f8595
No related branches found
No related tags found
No related merge requests found
VERSION=2.0
GIT=https://github.com/xTibor/VVVVVV
BRANCH=redox
GIT_UPSTREAM=https://github.com/TerryCavanagh/VVVVVV
BUILD_DEPENDS=(sdl2_image sdl2_mixer sdl2 liborbital mesa mesa_glu zlib llvm libogg libvorbis)
function recipe_version {
printf "1.0.0"
skip=1
}
function recipe_build {
sysroot="$(realpath ../sysroot)"
cd desktop_version
cmake \
-DCMAKE_INSTALL_PREFIX:PATH=/ \
-DBUILD_STATIC=ON \
-DBUILD_SHARED=OFF \
-DSDL2_INCLUDE_DIRS="$sysroot/include/SDL2" \
-DSDL2_LIBRARIES="-static -lSDL2main -lSDL2_mixer -lSDL2 $("${PKG_CONFIG}" --libs glu) -lglapi -lorbital -lz -lvorbisfile -lvorbis -logg" \
.
make -j"$(nproc)"
skip=1
}
function recipe_clean {
echo "skipping clean"
skip=1
}
function recipe_stage {
dest="$(realpath $1)"
mkdir -pv "$1/games/vvvvvv"
cp ./desktop_version/VVVVVV "$1/games/vvvvvv"
skip=1
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment