Skip to content

Instantly share code, notes, and snippets.

@jpina
Last active October 11, 2018 08:58
Show Gist options
  • Save jpina/503bfad7f49106c180a1971e0640fa12 to your computer and use it in GitHub Desktop.
Save jpina/503bfad7f49106c180a1971e0640fa12 to your computer and use it in GitHub Desktop.
Upgrade ibus to 1.5 in Ubuntu 14.04

Upgrade ibus to v1.5.x in Ubuntu 14.04

Install dependencies

sudo apt-get update -qq
sudo apt-get install -y gtk+-2.0 gtk+-3.0
sudo apt-get install -y libdconf-dev libnotify-dev
sudo apt-get install -y libdbus-1-dev

Download and compile ibus 1.5

wget https://github.com/ibus/ibus/releases/download/1.5.11/ibus-1.5.11.tar.gz
tar xvfz ibus-1.5.11.tar.gz
cd ibus-1.5.11
./configure --prefix=/usr --sysconfdir=/etc && make -j$(nproc)
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment