Add the Stage 4/5 native workflow: deterministic colprof/applycal/iccgamut and profcheck argv builders, verification history with CSV export and drift analytics, user/system ColorSync profile installation, and the matching SwiftUI views and fixture-driven tests. All Argyll interaction remains AGPL-isolated via ProcessManager subprocesses. Generated with [Devin](https://devin.ai) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
19 lines
325 B
Bash
Executable File
19 lines
325 B
Bash
Executable File
#!/bin/sh
|
|
# Mock applycal for Milestone 5 UI tests.
|
|
# Copies the input profile to the optional output path.
|
|
while [ "$#" -gt 0 ]; do
|
|
case "$1" in
|
|
-v|-a|-u) shift ;;
|
|
*) break ;;
|
|
esac
|
|
done
|
|
cal="$1"
|
|
input="$2"
|
|
output="$3"
|
|
if [ -n "$output" ]; then
|
|
cp "$input" "$output"
|
|
else
|
|
cp "$cal" "$input.cal.ctl"
|
|
fi
|
|
exit 0
|