summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-08-29 11:51:03 +0800
committerGitHub <noreply@github.com>2020-08-28 22:51:03 -0500
commitc85dc3a5b431409bed5b0753f04049641f4d3761 (patch)
treec5082c925affcfaab42fc6e96c6af477b1725363
parent6113be091929fb45e19b189cce17e3ef4ba97bc9 (diff)
downloadspack-c85dc3a5b431409bed5b0753f04049641f4d3761.tar.gz
spack-c85dc3a5b431409bed5b0753f04049641f4d3761.tar.bz2
spack-c85dc3a5b431409bed5b0753f04049641f4d3761.tar.xz
spack-c85dc3a5b431409bed5b0753f04049641f4d3761.zip
Add new package: fcgi (#18320)
-rw-r--r--var/spack/repos/builtin/packages/fcgi/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/fcgi/package.py b/var/spack/repos/builtin/packages/fcgi/package.py
new file mode 100644
index 0000000000..3b4036f6a3
--- /dev/null
+++ b/var/spack/repos/builtin/packages/fcgi/package.py
@@ -0,0 +1,20 @@
+# Copyright 2013-2020 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 Fcgi(AutotoolsPackage):
+ """FastCGI is simple because it is actually CGI with only a few extensions.
+ Like CGI, FastCGI is also language-independent. For instance, FastCGI
+ provides a way to improve the performance of the thousands of Perl
+ applications that have been written for the Web."""
+
+ homepage = "https://fastcgi-archives.github.io/"
+ url = "https://github.com/FastCGI-Archives/FastCGI.com/raw/master/original_snapshot/fcgi-2.4.1-SNAP-0910052249.tar.gz"
+
+ version('2.4.1-SNAP-0910052249', sha256='829dc89a0a372c7b0b172303ec9b42e9d20615d6d0e9fc81570fdac6c41a0f30')
+
+ parallel = False