mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-06-26 12:59:28 -04:00
47 lines
1 KiB
Bash
Executable file
47 lines
1 KiB
Bash
Executable file
#!/bin/sh -e
|
|
|
|
# SPDX-FileCopyrightText: Copyright 2026 crueter
|
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
RETURN=0
|
|
|
|
usage() {
|
|
cat <<EOF
|
|
Usage: cpmutil.sh package [command]
|
|
|
|
Operate on a package or packages.
|
|
|
|
Commands:
|
|
hash Verify the hash of a package, and update it if needed
|
|
update Check for updates for a package
|
|
fetch Fetch a package and place it in the cache
|
|
add Add a new package
|
|
rm Remove a package
|
|
version Change the version of a package
|
|
which Check if a package is defined
|
|
download Get the download URL for a package
|
|
dir Get the local directory for a package
|
|
reset Reset a fetched package to its original state
|
|
patch Create an in-tree patch based on local modifications
|
|
|
|
EOF
|
|
|
|
exit $RETURN
|
|
}
|
|
|
|
SCRIPTS=$(CDPATH='' cd -- "$(dirname -- "$0")/package" && pwd)
|
|
export SCRIPTS
|
|
|
|
while :; do
|
|
case "$1" in
|
|
hash | update | fetch | add | rm | version | which | download | reset | patch | dir)
|
|
cmd="$1"
|
|
shift
|
|
"$SCRIPTS/$cmd".sh "$@"
|
|
break
|
|
;;
|
|
*) usage ;;
|
|
esac
|
|
|
|
shift
|
|
done
|