Subversion uses serf for http repos

Add Scons package

Add serf package

Subversion uses serf for http repos
This commit is contained in:
Robert.French
2016-05-04 15:26:10 +00:00
parent f850e4d2d4
commit bfe009f98d
3 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
from spack import *
class Scons(Package):
"""SCons is a software construction tool"""
homepage = "http://scons.org"
url = "http://downloads.sourceforge.net/project/scons/scons/2.5.0/scons-2.5.0.tar.gz"
version('2.5.0', '9e00fa0df8f5ca5c5f5975b40e0ed354')
extends('python')
def install(self, spec, prefix):
python('setup.py', 'install', '--prefix=%s' % prefix)