# Depends on fcitx
# Depends on sunpinyin
# Depends on sunpinyin-data
# Depends on fcitx-configtool

# Exit on error:
set -e

wget http://download.fcitx-im.org/fcitx-sunpinyin/fcitx-sunpinyin-0.4.1.tar.xz
tar xf fcitx-sunpinyin-0.4.1.tar.xz
cd fcitx-sunpinyin-0.4.1

mkdir build
cd build

cmake .. \
    -DCMAKE_INSTALL_PREFIX=/usr \
    -DCMAKE_BUILD_TYPE=Release

make
make install

cd ../..
exit 0
