mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-21 04:14:17 +08:00
54 lines
1.0 KiB
Bash
54 lines
1.0 KiB
Bash
VERSION=0.7
|
|
GIT=https://github.com/mgba-emu/mgba.git
|
|
BRANCH=$VERSION
|
|
BUILD_DEPENDS=(sdl liborbital libiconv pixman)
|
|
|
|
function recipe_version {
|
|
echo "$VERSION"
|
|
skip=1
|
|
}
|
|
|
|
function recipe_update {
|
|
echo "skipping update"
|
|
skip=1
|
|
}
|
|
|
|
function recipe_build {
|
|
sysroot="$(realpath ../sysroot)"
|
|
export CFLAGS="-I$sysroot/include -I$sysroot/include/SDL"
|
|
export LDFLAGS="-L$sysroot/lib -static"
|
|
|
|
mkdir -p build
|
|
cd build
|
|
cmake \
|
|
-DCMAKE_INSTALL_PREFIX:PATH=/ \
|
|
-DBUILD_STATIC=ON \
|
|
-DBUILD_SHARED=OFF \
|
|
-DBUILD_QT=OFF \
|
|
-DUSE_SQLITE3=OFF \
|
|
-DUSE_DEBUGGERS=OFF \
|
|
-DBUILD_SDL=ON \
|
|
-DSDL_VERSION="1.2" \
|
|
-DSDL_LIBRARY="-lSDL -lorbital" \
|
|
..
|
|
VERBOSE=1 make all -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 "../build/build/sdl/mgba" "$dest/bin/mgba"
|
|
skip=1
|
|
}
|