23 lines
722 B
Python
23 lines
722 B
Python
# 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)
|
|
|
|
from spack import *
|
|
|
|
|
|
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']
|
|
|
|
@property
|
|
def install_targets(self):
|
|
return ['DEST_HOME={0}'.format(self.prefix), 'install']
|