From 3570d9ac078491c74d6ff3d9cef5c47bb8680491 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81ron=20Ricardo=20Perez-Lopez?= Date: Wed, 1 Nov 2023 08:26:55 +0100 Subject: [PATCH] Delete ci-scripts/download-cvc5.sh (#334) This script is not used anywhere, as far as I can tell. And even if it was, the links don't work anymore. --- ci-scripts/download-cvc5.sh | 58 ------------------------------------- 1 file changed, 58 deletions(-) delete mode 100755 ci-scripts/download-cvc5.sh diff --git a/ci-scripts/download-cvc5.sh b/ci-scripts/download-cvc5.sh deleted file mode 100755 index 8d085613a..000000000 --- a/ci-scripts/download-cvc5.sh +++ /dev/null @@ -1,58 +0,0 @@ -#!/bin/bash - -DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" -DEPS=$DIR/../deps - -mkdir -p $DEPS - - -usage () { - cat < ...] - -Downloads a precompiled cvc5 SMT Solver, - --h, --help display this message and exit -EOF - exit 0 -} - -while [ $# -gt 0 ] -do - case $1 in - -h|--help) usage;; - *) die "unexpected argument: $1";; - esac - shift -done - -if [ ! -d "$DEPS/cvc5" ]; then - cd $DEPS - if [[ "$OSTYPE" == linux* ]]; then - curl -o cvc5.tar.xz -L http://web.stanford.edu/~makaim/files/cvc5-linux.tar.xz - elif [[ "$OSTYPE" == darwin* ]]; then - curl -o cvc5.tar.xz -L http://web.stanford.edu/~makaim/files/cvc5-mac.tar.xz - elif [[ "$OSTYPE" == msys* ]]; then - echo "Pre-compiled libraries for Windows not yet available" - elif [[ "$OSTYPE" == cygwin* ]]; then - curl -o cvc5.tar.xz -L http://web.stanford.edu/~makaim/files/cvc5-linux.tar.xz - else - echo "Unrecognized OSTYPE=$OSTYPE" - exit 1 - fi - - tar -xf cvc5.tar.xz - rm cvc5.tar.xz - -else - echo "$DEPS/cvc5 already exists. If you want to re-download, please remove it manually." - exit 1 -fi - -if [ -f $DEPS/cvc5/build/src/libcvc5.a ] ; then \ - echo "It appears cvc5 was setup successfully into $DEPS/cvc5." - echo "You may now install it with make ./configure.sh --cvc5 && cd build && make" -else - echo "Downloading cvc5 failed." - exit 1 -fi