summary refs log tree commit diff stats
path: root/scripts
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2020-03-24 17:41:57 +0530
committerAndinus <andinus@nand.sh>2020-03-24 17:41:57 +0530
commit813b37d0cf7e6e371418feac56d40f48176105ba (patch)
tree2e4efd2224ff84700cbf354ea0ff75775d79a8a0 /scripts
parent532c060fd97c31c28f20f6f823472247edc0c30f (diff)
downloadcetus-813b37d0cf7e6e371418feac56d40f48176105ba.tar.gz
Reinitialize project and change module url
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/install.sh65
1 files changed, 0 insertions, 65 deletions
diff --git a/scripts/install.sh b/scripts/install.sh
deleted file mode 100755
index 5fc910e..0000000
--- a/scripts/install.sh
+++ /dev/null
@@ -1,65 +0,0 @@
-#!/bin/sh
-
-freebsdH="dae9b5b61e96919e94f7cd9510fd06ce318290fdee9dcd459005baaf67471377"
-openbsdH="49a8a899302267a103a7406032debef40d7cfd25cf856cf3a34cac969fba3490"
-linuxH="711265cc460989a42906b0ff46946dd55810682587469623ce86776223f02347"
-
-earlyCheck(){
-    os=`uname`
-    os=`echo $os | tr "[:upper:]" "[:lower:"]`
-
-    case $os in
-        *openbsd* | *linux* | *freebsd* ) ;;
-        *)
-            echo "Pre-built binary not available for your os"
-            exit 1
-            ;;
-    esac
-
-    cpu=`uname -m`
-    cpu=`echo $cpu | tr "[:upper:]" "[:lower:"]`
-
-    case $cpu in
-        *amd*64* | *x86*64* ) ;;
-        *)
-            echo "Pre-built binary not available for your cpu"
-            exit 1
-            ;;
-    esac
-}
-
-getURL(){
-    url="https://archive.org/download/cetus-v0.5.1/cetus-v0.5.1-$os-$cpu"
-}
-
-printURL(){
-    echo "You can get the Pre-built binary here:"
-    echo "$url"
-    echo
-    echo "Run these commands to install it on your device."
-    echo "# curl -L -o /usr/local/bin/cetus $url"
-    echo "# chmod +x /usr/local/bin/cetus"
-    echo
-    echo "You may want to verify the hash of the downloaded file."
-    echo "This is sha256 hash for cetus built for: $os $cpu"
-    case $os in
-        *openbsd* )
-            echo "$openbsdH"
-            ;;
-        *freebsd* )
-            echo "$freebsdH"
-            ;;
-        *linux* )
-            echo "$linuxH"
-            ;;
-    esac
-    echo
-    echo "Verify the hash by running sha256 on cetus binary."
-    echo "$ sha256 /usr/local/bin/cetus"
-}
-
-echo "Cetus v0.5.1"
-echo
-earlyCheck
-getURL
-printURL