blob: 2949dcda7305ba19a3b8c9559a20e12b88641257 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
class Xqilla(AutotoolsPackage):
"""XQilla is an XQuery and XPath 2 library and command line utility
written in C++, implemented on top of the Xerces-C library."""
homepage = "http://xqilla.sourceforge.net/HomePage"
url = "https://downloads.sourceforge.net/project/xqilla/XQilla-2.3.3.tar.gz"
version('2.3.3', '8ece20348687b6529bb934c17067803c')
variant('debug', default=False, description='Build a debugging version.')
variant('shared', default=True, description='Build shared libraries.')
depends_on('xerces-c')
def configure_args(self):
args = ['--with-xerces={0}'.format(self.spec['xerces-c'].prefix)]
if '+shared' in self.spec:
args.extend(['--enable-shared=yes',
'--enable-static=no'])
else:
args.extend(['--enable-shared=no',
'--enable-static=yes',
'--with-pic'])
if '+debug' in self.spec:
args.append('--enable-debug')
return args
|