summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/octave-instrctl/package.py
blob: 3ee5ff878e26e1a59fcb5f799831138ca5aa45b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2013-2024 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 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:")