Last active
December 18, 2015 03:09
-
-
Save kennedyj/5716061 to your computer and use it in GitHub Desktop.
Install the python linkchecker application with fixes for the install action. https://github.com/wummel/linkchecker
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/bash | |
| cd /tmp | |
| echo "# Downloading linkchecker v8.2" | |
| curl -L 'https://github.com/wummel/linkchecker/archive/v8.2.zip' -o /tmp/linkchecker-v8.2.zip | |
| unzip /tmp/linkchecker-v8.2.zip | |
| cd linkchecker* | |
| make -C doc/html | |
| python setup.py sdist --manifest-only | |
| python setup.py build | |
| touch doc/html/lcdoc.qch doc/html/lccollection.qhc | |
| echo "# Installing as sudo" | |
| sudo python setup.py install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment