nostalgia/scripts/pkg-gba

17 lines
395 B
Plaintext
Raw Normal View History

2017-05-16 01:35:32 -05:00
#! /usr/bin/env bash
set -e
2022-11-30 01:47:33 -06:00
set -u
2017-05-16 01:35:32 -05:00
OS=$(uname | tr [:upper:] [:lower:])
HOST_ENV=${OS}-$(uname -m)
BIN=./dist/${HOST_ENV}-$(cat .current_build)/bin/
NOSTALGIA_BIN=build/$(uname -n)/gba-*/src/nostalgia/player/nostalgia.bin
NOSTALGIA_PROJECT=$1
NOSTALGIA_GBA=nostalgia.gba
2017-05-16 01:35:32 -05:00
2022-11-30 01:47:33 -06:00
cp $NOSTALGIA_BIN $NOSTALGIA_GBA
${BIN}/nost-pack -src $NOSTALGIA_PROJECT -rom-bin $NOSTALGIA_GBA
gbafix $NOSTALGIA_GBA