summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrew Whitehouse <Drew.Whitehouse@gmail.com>2021-04-27 06:04:11 +1000
committerGitHub <noreply@github.com>2021-04-26 14:04:11 -0600
commit45b4dcb9ed6ce8cc5d5ca6275bca4ef07c3e82fc (patch)
tree8eaab8b7dddb2753c4ba1ce0f25afd4b404b2487
parentb7c4bfb2a70f3cf466371f27444a24f9ddcfcb4e (diff)
downloadspack-45b4dcb9ed6ce8cc5d5ca6275bca4ef07c3e82fc.tar.gz
spack-45b4dcb9ed6ce8cc5d5ca6275bca4ef07c3e82fc.tar.bz2
spack-45b4dcb9ed6ce8cc5d5ca6275bca4ef07c3e82fc.tar.xz
spack-45b4dcb9ed6ce8cc5d5ca6275bca4ef07c3e82fc.zip
add a package libcxxwrap-julia (#23076)
-rw-r--r--var/spack/repos/builtin/packages/libcxxwrap-julia/package.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libcxxwrap-julia/package.py b/var/spack/repos/builtin/packages/libcxxwrap-julia/package.py
new file mode 100644
index 0000000000..ee4caebe13
--- /dev/null
+++ b/var/spack/repos/builtin/packages/libcxxwrap-julia/package.py
@@ -0,0 +1,23 @@
+# Copyright 2013-2021 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 LibcxxwrapJulia(CMakePackage):
+ """This is the C++ library component of the CxxWrap.jl package, distributed as a
+regular CMake library for use in other C++ projects."""
+
+ homepage = "https://github.com/JuliaInterop/libcxxwrap-julia"
+ url = "https://github.com/JuliaInterop/libcxxwrap-julia/archive/refs/tags/v0.8.3.tar.gz"
+ git = "https://github.com/JuliaInterop/libcxxwrap-julia.git"
+
+ maintainers = ['eloop']
+
+ version('master', branch='master')
+ version('0.8.3', sha256='b0421d11bdee5ce8af4922de6dfe3b0e5d69b07bb52894e3a22a477bbd27ee9e')
+ version('0.8.2', sha256='f8b171def3d61904ba8f9a9052a405c25afbfb9a3c5af3dd30bc36a0184ed539')
+
+ depends_on('julia')