Skip to content

Instantly share code, notes, and snippets.

@zl4bv
Created November 15, 2015 22:24
Show Gist options
  • Save zl4bv/eb114c3a607fcc3dcb6f to your computer and use it in GitHub Desktop.
Save zl4bv/eb114c3a607fcc3dcb6f to your computer and use it in GitHub Desktop.
Building yubioath-desktop on debian
#!/bin/bash
# PySide dependencies
#
# https://github.com/PySide/BuildScripts/blob/master/dependencies.ubuntu.sh
#
apt-get install build-essential cmake libqt4-dev libxml2-dev \
libxslt1-dev python-dev qtmobility-dev
# yubioath-desktop dependencies
#
# https://github.com/Yubico/yubioath-desktop/blob/master/README
#
sudo apt-get install python-setuptools python-crypto python-pyscard \
python-pyside pyside-tools libykpers-1-1 pcscd
git clone https://github.com/Yubico/yubioath-desktop.git
cd yubioath-desktop
git submodule init
git submodule update
sudo python setup.py install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment