Last active
March 3, 2017 08:21
-
-
Save ernierasta/d6f40e69543ebb5274967f19a3cd649d to your computer and use it in GitHub Desktop.
Install wxgo on debian 8 64-bit
This file contains hidden or 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
| # minimal debian 8 64-bit install (only additional ssh server) | |
| mkdir install && cd install | |
| apt-get install -y ca-certificates | |
| #install golang (change 1.8 to actual latest version) | |
| wget https://godeb.s3.amazonaws.com/godeb-amd64.tar.gz && tar xf godeb-amd64.tar.gz | |
| ./godeb install 1.8 | |
| #install dependencies | |
| apt-get --no-install-recommends install git libwebkitgtk-3.0-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libgl1-mesa-dev libglu1-mesa-dev libxxf86vm-dev libnotify-dev libjpeg-dev libtiff5-dev | |
| #install gcc-6 from testing | |
| echo 'deb http://ftp.us.debian.org/debian testing main contrib non-free' > /etc/apt/sources.list.d/testing.list | |
| echo -e 'Package: *\nPin: release a=testing\nPin-Priority: 100\n' > /etc/apt/preferences.d/testing | |
| apt-get update && apt-get install -t testing gcc libc-dev-bin libc6-dev linux-libc-dev g++ | |
| go get -x github.com/dontpanic92/wxGo/wx | |
| #Done! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment