All checks were successful
eden-license / license-header (pull_request) Successful in 25s
Signed-off-by: crueter <crueter@eden-emu.dev>
22 lines
No EOL
664 B
Bash
Executable file
22 lines
No EOL
664 B
Bash
Executable file
#!/bin/sh -e
|
|
|
|
# SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
# SPDX-FileCopyrightText: 2025 crueter
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
# shellcheck disable=SC2038
|
|
# shellcheck disable=SC2016
|
|
[ -z "$PACKAGES" ] && PACKAGES=$(find . src -maxdepth 3 -name cpmfile.json | xargs jq -s 'reduce .[] as $item ({}; . * $item)')
|
|
|
|
# For your project you'll want to change the PACKAGES call to include whatever locations you may use (externals, src, etc.)
|
|
# Always include .
|
|
LIBS=$(echo "$PACKAGES" | jq -j 'keys_unsorted | join(" ")')
|
|
|
|
export PACKAGES
|
|
export LIBS
|
|
|
|
value() {
|
|
echo "$JSON" | jq -r ".$1"
|
|
} |