2025-10-03 16:56:46 -04:00
|
|
|
#!/bin/bash -e
|
2025-08-29 00:18:02 +02:00
|
|
|
|
2025-09-21 21:58:59 +02:00
|
|
|
# SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
2025-08-29 00:18:02 +02:00
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
# SPDX-FileCopyrightText: 2025 crueter
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2025-10-03 16:56:46 -04:00
|
|
|
# shellcheck disable=SC2038
|
|
|
|
# shellcheck disable=SC2016
|
|
|
|
[ -z "$PACKAGES" ] && PACKAGES=$(find . src -maxdepth 3 -name cpmfile.json | xargs jq -s 'reduce .[] as $item ({}; . * $item)')
|
|
|
|
LIBS=$(echo "$PACKAGES" | jq -j 'keys_unsorted | join(" ")')
|
2025-09-08 19:21:38 +02:00
|
|
|
|
2025-08-29 00:18:02 +02:00
|
|
|
tools/cpm-fetch.sh $LIBS
|