Skip to content
Snippets Groups Projects
Commit 883f601b authored by Kelly (KT) Thompson's avatar Kelly (KT) Thompson
Browse files

Fix style issues.

parent 91511538
No related branches found
No related tags found
No related merge requests found
......@@ -24,8 +24,10 @@
##############################################################################
from spack import *
class Serf(Package):
"""Apache Serf - a high performance C-based HTTP client library built upon the Apache Portable Runtime (APR) library"""
"""Apache Serf - a high performance C-based HTTP client library
built upon the Apache Portable Runtime (APR) library"""
homepage = 'https://serf.apache.org/'
url = 'https://archive.apache.org/dist/serf/serf-1.3.8.tar.bz2'
......@@ -46,9 +48,9 @@ def install(self, spec, prefix):
options.append('APU=%s' % spec['apr-util'].prefix)
options.append('OPENSSL=%s' % spec['openssl'].prefix)
options.append('LINKFLAGS=-L%s/lib -L%s/lib' %
( spec['expat'].prefix, spec['zlib'].prefix ))
(spec['expat'].prefix, spec['zlib'].prefix))
options.append('CPPFLAGS=-I%s/include -I%s/include' %
( spec['expat'].prefix, spec['zlib'].prefix ))
(spec['expat'].prefix, spec['zlib'].prefix))
scons(*options)
scons('install')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment