diff options
author | Olivier Cessenat <cessenat@gmail.com> | 2021-02-23 11:14:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-23 11:14:07 +0100 |
commit | b185a2c24c4a54736a8b06aa2e1bfb90d324c4a5 (patch) | |
tree | df14981eb4f82ce9ed769be1e8a620e22c7d5821 /var | |
parent | ccb4e3da05541a9761fbadb8398eef8867e4ec20 (diff) | |
download | spack-b185a2c24c4a54736a8b06aa2e1bfb90d324c4a5.tar.gz spack-b185a2c24c4a54736a8b06aa2e1bfb90d324c4a5.tar.bz2 spack-b185a2c24c4a54736a8b06aa2e1bfb90d324c4a5.tar.xz spack-b185a2c24c4a54736a8b06aa2e1bfb90d324c4a5.zip |
octave-instrctl: new package at v0.3.1 (#21845)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/octave-instrctl/package.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/octave-instrctl/package.py b/var/spack/repos/builtin/packages/octave-instrctl/package.py new file mode 100644 index 0000000000..a49d954cdd --- /dev/null +++ b/var/spack/repos/builtin/packages/octave-instrctl/package.py @@ -0,0 +1,18 @@ +# 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 OctaveInstrctl(OctavePackage, SourceforgePackage): + """Instrument-Control is a package for interfacing the outside world of hardware + via Serial, i2c or Parallel interfaces.""" + + homepage = "https://octave.sourceforge.io/instrument-control/" + sourceforge_mirror_path = "octave/instrument-control-0.3.1.tar.gz" + + version('0.3.1', sha256='d9c3b2e258cc8245ebfdd282e6314af12987daf453f4356555f56ca5ec55873c') + + extends('octave@3.6.0:') |