Created
May 11, 2014 12:55
-
-
Save benbridts/68323f90b5cab67b3fc4 to your computer and use it in GitHub Desktop.
Examentool on fedora
This file contains 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
############## | |
# xprintidle # | |
############## | |
# install xprintidle dependencies | |
sudo yum -y install libXScrnSaver-devel libx11-devel | |
# download xprintidle source | |
wget https://launchpad.net/ubuntu/+archive/primary/+files/xprintidle_0.2.orig.tar.gz | |
# extract | |
tar -xf xprintidle_0.2.orig.tar.gz | |
cd xprintidle-0.2/ | |
# setting of $xlibraries in ./configure doesn't work. | |
# remove it from the script | |
sed -i 's/^LIBS="\$LIBS -L\$x_libraries"$/LIBS="\$LIBS"/' configure | |
# pass the libraries to ./configure | |
./configure --with-x LDFLAGS='-L/lib64 -lX11 -lXext' | |
# build it | |
make | |
# install it | |
sudo make install | |
############## | |
# examentool # | |
############## | |
cd ~/Desktop | |
# install dependencies | |
sudo yum -y install ffmpeg | |
sudo yum -y install mono-core mono-addins mono-data mono-data-sqlite \ | |
mono-extras mono-mvc mono-nunit mono-wcf mono-web mono-winforms mono-winfx | |
# download examentool.exe from blackboard | |
# doing this in your browser is the easy way | |
# run it | |
sudo mono examentool.exe | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment