Skip to content

Instantly share code, notes, and snippets.

@penguin2716
Created May 19, 2014 16:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save penguin2716/a109cafe69f94fc7cdd6 to your computer and use it in GitHub Desktop.
Save penguin2716/a109cafe69f94fc7cdd6 to your computer and use it in GitHub Desktop.
Installation procedure of latest mikutter 3.0.0 for Ubuntu 14.04
#!/bin/bash
# This script will install mikutter 3.0.0 (currently testing release)
# to your fresh Ubuntu 14.04 environment (tested on Server LTS amd64 via ssh -YC)
# install depends
sudo apt-get update
sudo apt-get install ruby2.0 ruby2.0-dev git libgtk2.0-dev fonts-vlgothic
# checkout latest mikutter branch
git clone git://toshia.dip.jp/mikutter.git
cd mikutter
git checkout -b 3.0.0-test remotes/origin/release/3.0.0
# install gem depends
sudo gem2.0 install bundler
bundle install
# mikutter crashes for the first launch, but normally works after that (unknown reason)
ruby2.0 mikutter.rb || ruby2.0 mikutter.rb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment