summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/libtool-installation/package.py
blob: 72883b904232635a5836b0551af1cc9f8877d3e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Copyright 2013-2022 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 *
from spack.pkg.builtin.mock.libtool_deletion import AutotoolsBuilder as BuilderBase
from spack.pkg.builtin.mock.libtool_deletion import LibtoolDeletion


class LibtoolInstallation(LibtoolDeletion, AutotoolsPackage):
    """Mock AutotoolsPackage to check proper installation of libtool archives."""


class AutotoolsBuilder(BuilderBase):
    install_libtool_archives = True