diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-04-20 10:09:49 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-04-20 10:09:49 +0200 |
commit | 46867d77cb55c76c9f7d7b64dad519c5bd0393cc (patch) | |
tree | 5ebd1d528af2133545c59c67e2b0f69cd203e6fe /bin/identify-cygwin-packages.sh | |
parent | 72f682adad3b0e230fa1405cfdaf58e38302b918 (diff) | |
download | buildscripts-46867d77cb55c76c9f7d7b64dad519c5bd0393cc.tar.gz buildscripts-46867d77cb55c76c9f7d7b64dad519c5bd0393cc.tar.bz2 buildscripts-46867d77cb55c76c9f7d7b64dad519c5bd0393cc.zip |
fork X2Go buildscripts for Arctica Project
Diffstat (limited to 'bin/identify-cygwin-packages.sh')
-rwxr-xr-x | bin/identify-cygwin-packages.sh | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/bin/identify-cygwin-packages.sh b/bin/identify-cygwin-packages.sh deleted file mode 100755 index a16c885..0000000 --- a/bin/identify-cygwin-packages.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash - -export OUT="cygwin files and packages.csv" - -if [[ $# == 0 ]]; then - echo "Example usage: $0 sh.exe libgcc_s-1.dll" - echo "Output will be appended to \"${OUT}\"" - echo "This script is intended to help with GPL compliance." - echo "Currently this script does not identify the source package," - echo "Only the binary package." - echo "Browse a cygwin mirror or use Google/DuckDuckGo to identify the source package." -fi - -echo "File,Binary Package w/ Version,Source Package" >> "${OUT}" - -for file in "$@" -do - filepath="/bin/${file}" - binPkg=`cygcheck -f $filepath| tr -d '\r' | tr -d '\n'` - echo "${file},${binPkg}," >> "${OUT}" -done |