Sha256: 87ede1d03c35ec6c3ca6f856a4c447869350f84e2ef8126166110065d5fb0992
Contents?: true
Size: 1.02 KB
Versions: 3
Compression:
Stored size: 1.02 KB
Contents
#!/bin/bash # Install script # Identify the bundle path: # Try to get the USB bundle path on the fly bundle_path=`pkg-config libpcsclite --variable=usbdropdir` ini_path="/usr/local/scm/ini" ini_name="scl011.ini" [ ... distributionsabhängiges Ermitteln von "$bundle_path" ... ] # Installation of the driver bundle(s) # Create the appropriate directory for # placing the bundle(s) mkdir -p $bundle_path # Copy the driver bundle(s) echo "Copying driver bundle(s) to $bundle_path" cp -rf ./proprietary/*.bundle $bundle_path [ ... Fehlerbehandlung ... ] # Create symbolic link from open source # pcscd bundle path if [ "$bundle_path" != "/usr/local/pcsc/drivers" ]; then echo "Creating symbolic links from /usr/local/pcsc/drivers" mkdir -p /usr/local/pcsc/drivers cd ./proprietary for bundle in *.bundle; do ln -sf $bundle_path/$bundle /usr/local/pcsc/drivers done cd .. echo "Created symbolic links" fi
Version data entries
3 entries across 3 versions & 3 rubygems
Version | Path |
---|---|
ezii-browser-1.0.0 | server/redux-os/install.sh |
mega-os-1.0.0 | install.sh |
jester-data-8.0.0 | install.sh |