duckdb: add new package (#36682)
This commit is contained in:
parent
c3f207428c
commit
78af0545c4
1 changed files with 18 additions and 0 deletions
18
var/spack/repos/builtin/packages/duckdb/package.py
Normal file
18
var/spack/repos/builtin/packages/duckdb/package.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Copyright 2013-2023 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.package import *
|
||||
|
||||
|
||||
class Duckdb(CMakePackage):
|
||||
"""DuckDB is an in-process SQL OLAP Database Management System."""
|
||||
|
||||
homepage = "https://duckdb.org"
|
||||
url = "https://github.com/duckdb/duckdb/archive/refs/tags/v0.7.1.tar.gz"
|
||||
git = "https://github.com/duckdb/duckdb.git"
|
||||
|
||||
version("master", branch="master")
|
||||
version("0.7.1", sha256="67f840f861e5ffbe137d65a8543642d016f900b89dd035492d562ad11acf0e1e")
|
Loading…
Reference in a new issue