Add descriptive header to tool scripts.

This commit is contained in:
Hartmut Goebel 2017-01-18 11:02:52 +01:00
parent f9515fe9e5
commit f9ebecaa1d
5 changed files with 29 additions and 1 deletions

View File

@ -1,4 +1,8 @@
#!/usr/bin/env bash
#
# Build and install the LTO library, which the Cygwin package of
# libLLVM is lacking.
#
pushd "${0%/*}/.." &>/dev/null
source tools/tools.sh

View File

@ -1,5 +1,7 @@
#!/usr/bin/env bash
# OS X SDK packaging script
#
# Package the OS X SDKs into a tar file to be used by `build.sh`.
#
export LC_ALL=C

View File

@ -1,4 +1,13 @@
#!/usr/bin/env bash
#
# Mount a Xcode .dmg (using fuse) and run gen_sdk_package.sh.
#
# Works up to Xcode 7.3
#
# This script uses darling-dmg and fuse to mount the .dmg, thus
# avoiding to actually unpack it.
# darling-dmg will be downloaded and compiled if missing.
#
pushd "${0%/*}/.." &>/dev/null
source tools/tools.sh

View File

@ -1,4 +1,12 @@
#!/usr/bin/env bash
#
# Extract required files from a Xcode .dmg using p7zip and run
# gen_sdk_package.sh.
#
# Works up to Xcode 7.2
#
# p7zip will be downloaded and compiled if missing.
#
pushd "${0%/*}/.." &>/dev/null
source tools/tools.sh

View File

@ -1,4 +1,9 @@
#!/usr/bin/env bash
#
# Mount a Xcode .dmg (requires root) and run gen_sdk_package.sh.
#
# Works up to Xcode 4.2
#
if [ $(uname -s) != "Linux" ]; then
echo "This script must be run on Linux"