
- remove the old LGPL license headers from all files in Spack - add SPDX headers to all files - core and most packages are (Apache-2.0 OR MIT) - a very small number of remaining packages are LGPL-2.1-only
24 lines
813 B
Python
24 lines
813 B
Python
# Copyright 2013-2018 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 *
|
|
import os
|
|
|
|
|
|
class Munge(AutotoolsPackage):
|
|
""" MUNGE Uid 'N' Gid Emporium """
|
|
homepage = "https://code.google.com/p/munge/"
|
|
url = "https://github.com/dun/munge/releases/download/munge-0.5.11/munge-0.5.11.tar.bz2"
|
|
|
|
version('0.5.11', 'bd8fca8d5f4c1fcbef1816482d49ee01',
|
|
url='https://github.com/dun/munge/releases/download/munge-0.5.11/munge-0.5.11.tar.bz2')
|
|
|
|
depends_on('openssl')
|
|
depends_on('libgcrypt')
|
|
|
|
def install(self, spec, prefix):
|
|
os.makedirs(os.path.join(prefix, "lib/systemd/system"))
|
|
super(Munge, self).install(spec, prefix)
|