summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/nosource-install/package.py
blob: 424f1577ce0bb0792cdc0f21158cc01aa07ea09a (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
# 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 NosourceInstall(BundlePackage):
    """Simple bundle package with one dependency and metadata 'install'."""

    homepage = "http://www.example.com"

    version("2.0")
    version("1.0")

    depends_on("dependency-install")

    # The install method must also be present.
    def install(self, spec, prefix):
        touch(join_path(self.prefix, "install.txt"))

    @run_after("install")
    def post_install(self):
        touch(join_path(self.prefix, "post-install.txt"))