b46cb65b [nostalgia/studio] Add version 877349df [nostalgia/core/studio] Increase max tilesheet export size, fix input handling when popups open 5418c062 [olympic] Change olympic::s_version to olympic::appVersion dd9c1100 [glutils] Update copyright for 2024 db82aee7 [teagba] Update copyright for 2024 edf15858 [teagba] Update copyright for 2024 d1efbb2f [ox] Update copyright for 2024 051623f4 [olympic,nostalgia] Update copyright for 2024 055d64b1 [olympic] Add support for an AppLib app specific version de9f8426 [ox/std] Add error.hpp include to memory.hpp 200e5867 Add .idea to .gitignore f1609519 [olympic] Cleanup e452d9db [nostalgia] Add python3-mypy to Debian deps 43a87b60 [nostalgia] Ensure pkg-gba reads .current_build without a new line 8acc6244 [olympic/keel] Improve error clarity on pack some common failures bd2aeee2 [ox/claw] Improve error clarity when loading ModelObjects git-subtree-dir: deps/nostalgia git-subtree-split: b46cb65b7f5b1ea17c115fcb31a6baff323ea1a3
36 lines
1012 B
Python
Executable File
36 lines
1012 B
Python
Executable File
#! /usr/bin/env python3
|
|
|
|
#
|
|
# Copyright 2016 - 2023 gary@drinkingtea.net
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
#
|
|
|
|
import platform
|
|
import shutil
|
|
import subprocess
|
|
import sys
|
|
|
|
os = platform.system().lower()
|
|
arch = platform.machine()
|
|
host_env = f'{os}-{arch}'
|
|
|
|
# get current build type
|
|
with open(".current_build", "r") as f:
|
|
current_build = f.readlines()[0]
|
|
if current_build[len(current_build) - 1] == '\n':
|
|
current_build = current_build[:len(current_build) - 1]
|
|
|
|
project_dir = sys.argv[1]
|
|
project_name = sys.argv[2]
|
|
bin = f'./build/{host_env}-{current_build}/bin/'
|
|
project_bin = f'build/gba-release/bin/{project_name}.bin'
|
|
project_gba = f'{project_name}.gba'
|
|
|
|
shutil.copyfile(project_bin, project_gba)
|
|
subprocess.run([
|
|
f'{bin}/{project_name}-pack', '-src', project_dir, '-rom-bin', project_gba])
|
|
subprocess.run(['gbafix', project_gba])
|