Add Sphinx package

This commit is contained in:
Todd Gamblin 2015-11-04 17:55:43 -08:00
parent 0d993947ee
commit 1c4ef29962

View file

@ -0,0 +1,13 @@
from spack import *
class PySphinx(Package):
"""Sphinx Documentation Generator."""
homepage = "http://sphinx-doc.org"
url = "https://pypi.python.org/packages/source/S/Sphinx/Sphinx-1.3.1.tar.gz"
version('1.3.1', '8786a194acf9673464c5455b11fd4332')
extends('python')
def install(self, spec, prefix):
python('setup.py', 'install', '--prefix=%s' % prefix)