a-planet-alive/buildscripts/02_build_pa.sh

25 lines
652 B
Bash
Raw Normal View History

2020-11-01 05:11:26 -08:00
#!/bin/bash
LIB="$(realpath $(dirname $0))" # Absolute path
PROJ="$(dirname $LIB)" # Subgame dir (..)
SRC="$(dirname $PROJ)"/mods_src/ # mods sources (../..)
DST="$PROJ"/mods/ # Subgame mods
LOG="$PROJ"/mod_sources.txt
source "$LIB"/build-whynot.lib
cd "$SRC" # for proper resolving the '*'
## Sync minetest_game
2020-11-10 07:46:06 -08:00
mod_install minetest_game --exclude=farming --exclude=bucket --exclude=doors minetest_game/mods/*
2020-11-01 05:11:26 -08:00
# Install all other mods
mod_install blocks_functions
mod_install buildings
mod_install environment
mod_install flora
mod_install gui
mod_install lib_api
mod_install mobs
mod_install player
2020-11-02 13:27:42 -08:00
mod_install special