23 lines
683 B
Python
23 lines
683 B
Python
# Copyright 2013-2019 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', 'a0128d661cfe7cc8c121e73519c54fbf')
|
|
|
|
# all3 includes 7z, 7za, and 7zr
|
|
build_targets = ['all3']
|
|
|
|
@property
|
|
def install_targets(self):
|
|
return ['DEST_HOME={0}'.format(self.prefix), 'install']
|