# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other # Spack Project Developers. See the top-level COPYRIGHT file for details. # Copyright 2023 EMBL-European Bioinformatics Institute # # SPDX-License-Identifier: (Apache-2.0 OR MIT) from spack.package import * class PerlProcDaemon(PerlPackage): """Run Perl program(s) as a daemon process""" homepage = "https://metacpan.org/pod/Proc::Daemon" url = "https://cpan.metacpan.org/authors/id/A/AK/AKREAL/Proc-Daemon-0.23.tar.gz" maintainers("EbiArnie") version("0.23", sha256="34c0b85b7948b431cbabc97cee580835e515ccf43badbd8339eb109474089b69") depends_on("perl-proc-processtable", type=("build", "link")) def test_use(self): """Test 'use module'""" options = ["-we", 'use strict; use Proc::Daemon; print("OK\n")'] perl = self.spec["perl"].command out = perl(*options, output=str.split, error=str.split) assert "OK" in out