summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/needs-text-relocation/package.py
blob: f1dd4148c24570fec27fb9726a355aa50c2702e3 (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
# 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 NeedsTextRelocation(Package):
    """A dumy package that encodes its prefix."""

    homepage = "https://www.cmake.org"
    url = "https://cmake.org/files/v3.4/cmake-3.4.3.tar.gz"

    version("0.0.0", md5="12345678qwertyuiasdfghjkzxcvbnm0")

    def install(self, spec, prefix):
        mkdirp(prefix.bin)

        exe = join_path(prefix.bin, "exe")
        with open(exe, "w") as f:
            f.write(prefix)
        set_executable(exe)

        otherexe = join_path(prefix.bin, "otherexe")
        with open(otherexe, "w") as f:
            f.write("Lorem Ipsum")
        set_executable(otherexe)