clyde 0.6.0

A cross-platform package manager for prebuilt applications
# This file has been generated by Clyde
# It must be sourced from your shell, not executed

if [ "${BASH_SOURCE-}" = "$0" ]; then
    echo "You must source this script, using \". $0\"" >&2
    exit 12
fi

_clyde_setup() {
    local inst_dir=$CLYDE_HOME/inst

    export PATH="$inst_dir/bin:$PATH"
    export MANPATH="$inst_dir/share/man:${MANPATH-}"
    export XDG_DATA_DIRS="$inst_dir/share:${XDG_DATA_DIRS-/usr/local/share:/usr/share}"

    # TODO remove once this variable has been deprecated
    export CLYDE_INST_DIR=$inst_dir

    case "$SHELL" in
        */zsh)
            fpath=($inst_dir/share/zsh-completions $fpath)
            ;;
        *)
            ;;
    esac
}

export CLYDE_HOME="@CLYDE_HOME@"
_clyde_setup