summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/sam2p/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/sam2p/package.py')
-rw-r--r--var/spack/repos/builtin/packages/sam2p/package.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/sam2p/package.py b/var/spack/repos/builtin/packages/sam2p/package.py
new file mode 100644
index 0000000000..6c4c8e1cb0
--- /dev/null
+++ b/var/spack/repos/builtin/packages/sam2p/package.py
@@ -0,0 +1,25 @@
+# Copyright 2013-2022 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 Sam2p(Package):
+ """A raster to PostScript/PDF image conversion program"""
+
+ homepage = "https://github.com/pts/sam2p"
+ url = "https://github.com/pts/sam2p/archive/v0.49.4.tar.gz"
+ git = homepage
+
+ maintainers = ["robertu94"]
+
+ version("master", branch="master")
+ version("2021-05-04", commit="f3e9cc0a2df1880a63f9f37c96e3595bca890cfa")
+
+ def install(self, spec, prefix):
+ compile_sh = Executable("./compile.sh")
+ compile_sh()
+ mkdirp(prefix.bin)
+ install("sam2p", prefix.bin)