You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
552 B
24 lines
552 B
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
sudo add-apt-repository --yes ppa:beineri/opt-qt58-trusty
|
|
sudo apt-get update -qq
|
|
|
|
git clone https://github.com/NixOS/patchelf.git
|
|
cd patchelf
|
|
bash ./bootstrap.sh
|
|
./configure
|
|
make -j2
|
|
sudo make install
|
|
|
|
cd -
|
|
|
|
cd /tmp/
|
|
wget -c "https://github.com/probonopd/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage"
|
|
chmod +x appimagetool*AppImage
|
|
./appimagetool*AppImage --appimage-extract
|
|
sudo cp squashfs-root/usr/bin/* /usr/local/bin
|
|
cd -
|
|
|
|
sudo apt-get -y install qt58base qt58declarative qt58webengine binutils xpra
|
|
|