mgba, bump to 0.10.5, fixes dependency for libzip (#12893)

This commit is contained in:
Schrijvers Luc
2025-09-02 13:55:39 +02:00
committed by GitHub
parent c3a9495f8c
commit a01fddc474

View File

@@ -10,11 +10,11 @@ Other goals include accurate enough emulation to provide a development \
environment for homebrew software, a good workflow for tool-assist runners, \
and a modern feature set for emulators that older emulators may not support."
HOMEPAGE="https://mgba.io/"
COPYRIGHT="2013-2021 Jeffrey Pfau"
COPYRIGHT="2013-2025 Jeffrey Pfau"
LICENSE="MPL v2.0"
REVISION="2"
REVISION="1"
SOURCE_URI="https://github.com/mgba-emu/mgba/archive/$portVersion.tar.gz"
CHECKSUM_SHA256="60afef8fb79ba1f7be565b737bae73c6604a790391c737f291482a7422d675ae"
CHECKSUM_SHA256="91d6fbd32abcbdf030d58d3f562de25ebbc9d56040d513ff8e5c19bee9dacf14"
ADDITIONAL_FILES="mgba.rdef.in"
ARCHITECTURES="all !x86_gcc2"
@@ -83,13 +83,14 @@ BUILD_PREREQUIRES="
BUILD()
{
cmake -Bbuild $cmakeDirArgs \
-DCMAKE_BUILD_TYPE=Release \
-GNinja \
cmake -B build -S . -GNinja -DCMAKE_BUILD_TYPE=Release \
$cmakeDirArgs \
-DCMAKE_POLICY_VERSION_MINIMUM=3.5 \
-DBUILD_GL=OFF \
-DBUILD_GLES2=OFF \
-DBUILD_GLES3=OFF \
-DUSE_DISCORD_RPC=OFF
ninja -C build $jobArgs
}