diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-11-04 02:27:45 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-03 12:27:45 -0600 |
commit | cefbc39356266cbec6e4f8ac1b6ef4c4c007dfc5 (patch) | |
tree | 5002916c309464d4f8d0d2ee7846ffd0c4ce525d | |
parent | ffec64ce30157ab1c11902306226a22d4a1ea17e (diff) | |
download | spack-cefbc39356266cbec6e4f8ac1b6ef4c4c007dfc5.tar.gz spack-cefbc39356266cbec6e4f8ac1b6ef4c4c007dfc5.tar.bz2 spack-cefbc39356266cbec6e4f8ac1b6ef4c4c007dfc5.tar.xz spack-cefbc39356266cbec6e4f8ac1b6ef4c4c007dfc5.zip |
Add new package: libbinio (#19706)
-rw-r--r-- | var/spack/repos/builtin/packages/libbinio/package.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libbinio/package.py b/var/spack/repos/builtin/packages/libbinio/package.py new file mode 100644 index 0000000000..75c846fdbf --- /dev/null +++ b/var/spack/repos/builtin/packages/libbinio/package.py @@ -0,0 +1,16 @@ +# Copyright 2013-2020 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 Libbinio(AutotoolsPackage): + """Platform-independent way to access binary data streams in C++.""" + + homepage = "https://github.com/adplug/libbinio" + url = "https://github.com/adplug/libbinio/releases/download/libbinio-1.5/libbinio-1.5.tar.bz2" + + version('1.5', sha256='398b2468e7838d2274d1f62dbc112e7e043433812f7ae63ef29f5cb31dc6defd') + version('1.4', sha256='4a32d3154517510a3fe4f2dc95e378dcc818a4a921fc0cb992bdc0d416a77e75') |