mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2025-01-22 07:54:22 +00:00
Update mosh compile to get specific versions
This commit is contained in:
parent
c5338921c9
commit
178324eaa1
@ -2,6 +2,7 @@
|
|||||||
set -e
|
set -e
|
||||||
|
|
||||||
cd "$TMP_DIR"
|
cd "$TMP_DIR"
|
||||||
|
MOSH_VERSION=1.4.0
|
||||||
|
|
||||||
sudo_package automake libtool g++ protobuf-compiler libprotobuf-dev libboost-dev libutempter-dev libncurses5-dev zlib1g-dev libio-pty-perl libssl-dev pkg-config
|
sudo_package automake libtool g++ protobuf-compiler libprotobuf-dev libboost-dev libutempter-dev libncurses5-dev zlib1g-dev libio-pty-perl libssl-dev pkg-config
|
||||||
|
|
||||||
@ -50,8 +51,16 @@ sudo_package automake libtool g++ protobuf-compiler libprotobuf-dev libboost-dev
|
|||||||
# fi
|
# fi
|
||||||
|
|
||||||
# Clone mosh
|
# Clone mosh
|
||||||
git clone --depth 1 https://github.com/mobile-shell/mosh
|
MOSH_FOLDER="mosh-${MOSH_VERSION}"
|
||||||
cd mosh
|
MOSH_FILE="mosh-${MOSH_VERSION}.tar.gz"
|
||||||
|
if ! [ -d "$MOSH_FOLDER" ]; then
|
||||||
|
if ! [ -f "$MOSH_FILE" ]; then
|
||||||
|
wget "https://mosh.org/${MOSH_FILE}"
|
||||||
|
fi
|
||||||
|
tar -xzf "$MOSH_FILE"
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd "$MOSH_FOLDER"
|
||||||
|
|
||||||
# Set the path for pkgconfig
|
# Set the path for pkgconfig
|
||||||
export PKG_CONFIG_PATH=$LOCAL_PREFIX/lib/pkgconfig
|
export PKG_CONFIG_PATH=$LOCAL_PREFIX/lib/pkgconfig
|
||||||
|
Loading…
x
Reference in New Issue
Block a user