herbfargus
Member
Post count: 1858

I just tested Bussard out – Its pretty awesome: brilliant work

All its missing is some ambient space music in the background.

just as a reference for anyone else who is building a love game from a github repo you can follow this format in the configure function of the love script:

    # get Bussard for Love 10.0 (game data)
    if [[ ! -f "$romdir/love/bussard.love" ]]; then
        gitPullOrClone "tmp" https://gitlab.com/technomancy/bussard.git
        cd tmp
        zip -r "$romdir/love/bussard.love" "."
        rm -R "tmp"
        chown $user:$user "$romdir/love/bussard.love"
    fi

It can be run with

cd RetroPie-Setup
sudo ./retropie_packages.sh love configure

Mr. Rescue

    # get mrrescue-1.02d.love (freeware game data)
    if [[ ! -f "$romdir/love/mrrescue-1.02d.love" ]]; then
        wget "https://github.com/SimonLarsen/mrrescue/releases/download/v1.02d/mrrescue-1.02d.love" -O "$romdir/love/mrrescue-1.02d.love"
        chown $user:$user "$romdir/love/mrrescue-1.02d.love"
    fi

Sienna

    # get sienna-1.0c.love (freeware game data)
    if [[ ! -f "$romdir/love/sienna-1.0c.love" ]]; then
        wget "https://github.com/SimonLarsen/sienna/releases/download/v1.0c/sienna-1.0c.love" -O "$romdir/love/sienna-1.0c.love"
        chown $user:$user "$romdir/love/sienna-1.0c.love"
    fi