summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/p7zip/package.py
blob: 743972331633714425965c58fd8c1ff6d516a01d (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-2021 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)


class P7zip(MakefilePackage):
    """A Unix port of the 7z file archiver"""

    homepage = "http://p7zip.sourceforge.net"
    url      = "https://downloads.sourceforge.net/project/p7zip/p7zip/16.02/p7zip_16.02_src_all.tar.bz2"

    version('16.02', sha256='5eb20ac0e2944f6cb9c2d51dd6c4518941c185347d4089ea89087ffdd6e2341f')

    # all3 includes 7z, 7za, and 7zr
    build_targets = ['all3']

    def edit(self, spec, prefix):
        if 'platform=darwin' in self.spec:
            if '%gcc' in self.spec:
                copy('makefile.macosx_gcc_64bits', 'makefile.machine')
            elif '%apple-clang' in self.spec or '%clang' in self.spec:
                copy('makefile.macosx_llvm_64bits', 'makefile.machine')

    @property
    def install_targets(self):
        return ['DEST_HOME={0}'.format(self.prefix), 'install']