Files
ICCery/src-tauri/argyll/mocks/colprof.mock
gronod 696a508ca9
Build Windows Packages / Build Windows (push) Failing after 40s
Build Linux Packages / Build Linux (push) Failing after 2m52s
feat: fetch ArgyllCMS binaries at build time and offer USB driver setup (#127)
- Fetch binary releases dynamically from Gronod/argyllcms at package/build time
- Add scripts/fetch-argyll.mjs and npm run fetch-argyll script
- Remove vendored platform binaries from git and update .gitignore
- Relocate test mocks to src-tauri/argyll/mocks/
- Add missing sidecar check in build.rs
- Configure NSIS installerHooks with hooks.nsh and installMode both
- Update all 6 GitHub/Gitea CI workflows with fetch and hard sidecar verification
- Update README, ROADMAP, and THIRDPARTY-LICENSES documentation
2026-08-29 09:25:45 +01:00

21 lines
445 B
Bash

#!/bin/bash
# Mock script for colprof
# Simulates colprof execution and outputs progress log
basename="$1"
# Find last argument if -D or other flags are used
for arg in "$@"; do
basename="$arg"
done
echo "colprof: Starting profile calculation for $basename"
sleep 1
echo "Gamut mapping calculation..."
sleep 1
echo "Fitting cLUT grid points..."
sleep 1
echo "Writing ICC profile $basename.icc..."
touch "$basename.icc"
echo "Done."
exit 0