summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/nosource-install/package.py
blob: 74e95e75b0e64796471e0aa62efd1fbf05365819 (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
# Copyright 2013-2020 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)


import os
from spack import *
from llnl.util.filesystem import touch


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 phase must be specified.
    phases = ['install']

    # The install method must also be present.
    def install(self, spec, prefix):
        touch(os.path.join(self.prefix, 'install.txt'))

    @run_after('install')
    def post_install(self):
        touch(os.path.join(self.prefix, 'post-install.txt'))