Skip to content
Snippets Groups Projects
Commit 1ac1cc3d authored by becker33's avatar becker33 Committed by GitHub
Browse files

Merge pull request #1437 from jgalarowicz/update-xercesc

Update the version of xerces-c, where the developers remove the old v…
parents 3c6f6fc8 e69423a1
Branches
Tags
No related merge requests found
...@@ -24,16 +24,18 @@ ...@@ -24,16 +24,18 @@
############################################################################## ##############################################################################
from spack import * from spack import *
class XercesC(Package): class XercesC(Package):
""" Xerces-C++ is a validating XML parser written in a portable subset of C++. """ Xerces-C++ is a validating XML parser written in a portable subset of C++.
Xerces-C++ makes it easy to give your application the ability to read and Xerces-C++ makes it easy to give your application the ability to read and
write XML data. A shared library is provided for parsing, generating, write XML data. A shared library is provided for parsing, generating,
manipulating, and validating XML documents using the DOM, SAX, and SAX2 APIs. manipulating, and validating XML documents using the DOM, SAX, and SAX2
APIs.
""" """
homepage = "https://xerces.apache.org/xerces-c" homepage = "https://xerces.apache.org/xerces-c"
url = "https://www.apache.org/dist/xerces/c/3/sources/xerces-c-3.1.3.tar.bz2" url = "https://www.apache.org/dist/xerces/c/3/sources/xerces-c-3.1.4.tar.bz2"
version('3.1.3', '5e333b55cb43e6b025ddf0e5d0f0fb0d') version('3.1.4', 'd04ae9d8b2dee2157c6db95fa908abfd')
def install(self, spec, prefix): def install(self, spec, prefix):
configure("--prefix=%s" % prefix, configure("--prefix=%s" % prefix,
...@@ -41,4 +43,3 @@ def install(self, spec, prefix): ...@@ -41,4 +43,3 @@ def install(self, spec, prefix):
make("clean") make("clean")
make() make()
make("install") make("install")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment