mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-12 09:20:36 +00:00
Ports/mgba: Update formatting to be consistent with other ports
This commit is contained in:
parent
729e35ef21
commit
c2afd3de23
Notes:
sideshowbarker
2024-07-17 01:51:00 +09:00
Author: https://github.com/tcl3 Commit: https://github.com/SerenityOS/serenity/commit/c2afd3de23 Pull-request: https://github.com/SerenityOS/serenity/pull/20504 Reviewed-by: https://github.com/timschumi ✅
1 changed files with 12 additions and 4 deletions
|
@ -1,12 +1,20 @@
|
|||
#!/usr/bin/env -S bash ../.port_include.sh
|
||||
port=mgba
|
||||
version=0.9.3
|
||||
port='mgba'
|
||||
version='0.9.3'
|
||||
files=(
|
||||
"https://github.com/mgba-emu/mgba/archive/refs/tags/${version}.tar.gz 692ff0ac50e18380df0ff3ee83071f9926715200d0dceedd9d16a028a59537a0"
|
||||
)
|
||||
configopts=("-DCMAKE_TOOLCHAIN_FILE=${SERENITY_BUILD_DIR}/CMakeToolchain.txt")
|
||||
configopts=(
|
||||
"-DCMAKE_TOOLCHAIN_FILE=${SERENITY_BUILD_DIR}/CMakeToolchain.txt"
|
||||
)
|
||||
useconfigure=true
|
||||
depends=("SDL2" "zlib" "sqlite" "libpng" "libzip")
|
||||
depends=(
|
||||
'libpng'
|
||||
'libzip'
|
||||
'SDL2'
|
||||
'sqlite'
|
||||
'zlib'
|
||||
)
|
||||
|
||||
configure() {
|
||||
run cmake "${configopts[@]}"
|
||||
|
|
Loading…
Reference in a new issue