1. Downdoad make for windows
2. Downdoad libintl for windows
1. Downdoad make for windows
2. Downdoad libintl for windows
#!/bin/bash | |
set -e | |
cd `dirname $0` | |
################################################################## | |
ARTEMIS_VERSION="2.33.0" | |
ARTEMIS_FILE="apache-artemis-$ARTEMIS_VERSION-bin.tar.gz" | |
ARTEMIS_HOME="/opt/apache-artemis-${ARTEMIS_VERSION}" |
#!/bin/bash | |
set -e | |
cd `dirname $0` | |
########################################### | |
PAHO_VERSION="1.1.0" | |
PAHO_GZFILE="v${PAHO_VERSION}.tar.gz" | |
PAHO_DIR="paho.mqtt.embedded-c-${PAHO_VERSION}" | |
# download |
wget https://www.python.org/ftp/python/2.7.18/Python-2.7.18.tar.xz
sudo tar xzf Python-2.7.18.tar.xz
cd Python-2.7.18
./configure --enable-optimizations
make altinstall