
Add language dependencies `c`, `cxx`, and `fortran`. These `depends_on` statements are auto-generated based on file extensions found in source tarballs/zipfiles. The `# generated` comment can be removed by package maintainers after validating correctness.
27 lines
828 B
Python
27 lines
828 B
Python
# Copyright 2013-2024 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")
|
|
|
|
depends_on("c", type="build") # generated
|
|
|
|
def install(self, spec, prefix):
|
|
configure("--prefix={0}".format(prefix))
|
|
make()
|
|
make("install")
|