summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/libtool-installation/package.py
blob: c254a6f85893e67756d7af32536070af773256bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Copyright 2013-2024 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