Parcourir la source

Add Spyder Colorimeter Driver Installation

Script to install the Spyder2 driver systemwide from the CVSpyder.dll
file using Argyll's oeminst tool
master
Nate Bohman il y a 3 ans
Parent
révision
bedc051703
Signé par: Nate Bohman <natrinicle@gmail.com> ID de la clé GPG: C10546A54ABA1CE5
1 fichiers modifiés avec 17 ajouts et 0 suppressions
  1. +17
    -0
      bin/install-spyder.sh

+ 17
- 0
bin/install-spyder.sh Voir le fichier

@@ -0,0 +1,17 @@
#!/usr/bin/env bash

# Install the Spyder2 Colorimeter driver from the Windows DLL

CVSPYDER_DLL=$1

if [ ! -f "$(which oeminst)" ]l then
echo "Missing oeminst binary that comes from Argyll packaage."
exit 1
fi

if [ ! -f "${CVSPYDER_DLL}" ]; then
echo "Pass path to CVSpyder.dll as first argument"
exit 1
fi

sudo oeminst -s l ${CVSPYDER_DLL}

Chargement…
Annuler
Enregistrer