This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
RTKPACKAGES="automake build-essential checkinstall git libblas3 libblas-common libgfortran3 liblapack3" | |
RTKURL="https://github.com/tomojitakasu/RTKLIB.git -b rtklib_2.4.3" | |
###INSTALL RTKLIB PACKAGES### | |
apt-get update && | |
apt-get install -y $RTKPACKAGES && | |
###PREPARE RTKLIB SOURCE### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
MBEDVERSION="2.16.2" | |
OVPNVERSION="2.4.7" | |
COREPACKAGES="openvpn" | |
BUILDPACKAGES="cmake net-tools python wget" | |
MBEDURL="https://tls.mbed.org/download/mbedtls-${MBEDVERSION}-apache.tgz" | |
OVPNURL="https://swupdate.openvpn.org/community/releases/openvpn-${OVPNVERSION}.tar.gz" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
###AUTHOR### | |
#Harry Dove-Robinson 2019-06-07 | |
#[email protected] | |
#https://gist.github.com/hdoverobinson | |
#https://github.com/hdoverobinson | |
###NOTES### | |
#Packages required: cmp, pigz, md5sum (Mac users should also install findutils and gnu-tar via Brew) | |
#This script will do the following: |
OlderNewer