Skip to content

Instantly share code, notes, and snippets.

@wbtuomela
Forked from demofly/go1.3-install-deb.sh
Last active August 29, 2015 14:05
Show Gist options
  • Save wbtuomela/3fa23489e45d722a27cf to your computer and use it in GitHub Desktop.
Save wbtuomela/3fa23489e45d722a27cf to your computer and use it in GitHub Desktop.
Debian Packages for golang-1.3.1
apt-get install devscripts build-essential
apt-get build-dep golang-go
wget http://ftp.us.debian.org/debian/pool/main/g/golang/golang_1.3.1-1.dsc
wget http://ftp.us.debian.org/debian/pool/main/g/golang/golang_1.3.1.orig.tar.gz
wget http://ftp.us.debian.org/debian/pool/main/g/golang/golang_1.3.1-1.debian.tar.xz
dpkg-source -x golang_1.3.1-1.dsc
cd golang-1.3.1/
debuild -us -uc
cd ..
dpkg -i golang-go_1.3.1-1_amd64.deb golang-src_1.3.1-1_amd64.deb golang-go-linux-amd64_1.3.1-1_amd64.deb vim-syntax-go_1.3.1-1_all.deb
@wbtuomela
Copy link
Author

Tested with Linux Mint 16 64-bit

@SamuelMarks
Copy link

Just found this, very helpful: https://github.com/niemeyer/godeb

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment