diff --git a/docs/conf.py b/docs/conf.py index 23a9a9615..3ed30c837 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,4 +1,4 @@ -# -*- coding: utf-8 -*- + # -*- coding: utf-8 -*- # # Attic documentation build configuration file, created by # sphinx-quickstart on Sat Sep 10 18:18:25 2011. @@ -216,3 +216,11 @@ latex_documents = [ # ('man', 'attic', 'Attic', # ['Jonas Borgström'], 1) #] + +extensions = ['sphinx.ext.extlinks'] + +extlinks = { + 'issue': ('https://github.com/jborg/attic/issues/%s', '#'), + 'targz_url': ('https://pypi.python.org/packages/source/A/Attic/%%s-%s.tar.gz' % version, None), + 'artifacts': ('https://attic-backup.org/downloads/releases/%s/%%s' % version, '') + } diff --git a/docs/installation.rst b/docs/installation.rst index 0d5c7f96b..44e31e4ec 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -29,7 +29,7 @@ Installing from source tarballs ------------------------------- .. parsed-literal:: - $ curl -O |package_url| + $ curl -O :targz_url:`Attic` $ tar -xvzf |package_filename| $ cd |package_dirname| $ python setup.py install @@ -50,3 +50,9 @@ Packages |project_name| is also part of the Debian_, Ubuntu_, `Arch Linux`_ and Slackware_ distributions of GNU/Linux. + +Standalone binaries +------------------- + +Prebuilt standalone binaries that work on +most Linux systems can be found :artifacts:`here <>`.