Last active
August 29, 2015 13:57
-
-
Save StoneyJackson/9655337 to your computer and use it in GitHub Desktop.
MouseTrap Developer Quickstart Fedora 20 Live USB
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
## Install needed dependencies for MouseTrap development. | |
## Need to update before we install. | |
sudo yum -y update gnome-common glib2-devel intltool python-devel opencv-python python-xlib | |
## Now we can install. | |
sudo yum -y install gnome-common glib2-devel intltool python-devel opencv-python python-xlib | |
## Clone mousetrap and the current development branch. | |
cd ; git clone git://git.gnome.org/mousetrap -b gnome3-wip ; cd | |
echo "" | |
echo "Done. Please see mousetrap/README.md" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment