summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/epics-pcas/package.py
blob: 09ff843fc7c2a11bf697acff0db09fc76ed7efe5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# 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 EpicsPcas(MakefilePackage):
    """EPICS Portable Channel Access Server and Generic Data Descriptor
    C++ libraries, split off from EPICS Base 3.16.1 as a separate module
    for EPICS 7."""

    homepage = "https://github.com/epics-modules/pcas"
    url = "https://github.com/epics-modules/pcas/archive/refs/tags/v4.13.3.tar.gz"

    maintainers("glenn-horton-smith")

    version("4.13.3", sha256="5004e39339c8e592fcb9b4275c84143635c6e688c0fbe01f17dafe19850398a0")

    depends_on("epics-base", type=("build", "link", "run"))

    @property
    def install_targets(self):
        return ["INSTALL_LOCATION={0}".format(self.prefix), "install"]

    def edit(self, spec, prefix):
        with open("configure/RELEASE.local", "w") as release_file:
            release_file.write("EPICS_BASE = " + env["EPICS_BASE"] + "\n")

    def setup_run_environment(self, envmod):
        envmod.prepend_path("PATH", join_path(self.prefix.bin, env["EPICS_HOST_ARCH"]))