add new package: daemonize (#38477)

This commit is contained in:
miheer vaidya 2023-06-22 00:28:52 -06:00 committed by GitHub
parent b6b34aa0fe
commit 00d769d644
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,24 @@
# Copyright 2013-2023 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 *
class Daemonize(Package):
"""The Emacs programmable text editor."""
homepage = "https://software.clapper.org/daemonize"
url = "https://github.com/bmc/daemonize/archive/refs/tags/release-1.7.8.tar.gz"
git = "https://github.com/bmc/daemonize.git"
maintainers("vmiheer")
version("master", branch="master")
version("1.7.8", sha256="20c4fc9925371d1ddf1b57947f8fb93e2036eb9ccc3b43a1e3678ea8471c4c60")
def install(self, spec, prefix):
configure("--prefix={0}".format(prefix))
make()
make("install")