summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authormiheer vaidya <v.miheer@gmail.com>2021-04-26 02:02:20 -0600
committerGitHub <noreply@github.com>2021-04-26 02:02:20 -0600
commitd21339bae5e14a0b862845ec051358fe2f0c4105 (patch)
tree651793af573d89ceca5d74f454821f25de9cc329 /var
parent7952a802ed357e615f8232fcda4c5086185d36c6 (diff)
downloadspack-d21339bae5e14a0b862845ec051358fe2f0c4105.tar.gz
spack-d21339bae5e14a0b862845ec051358fe2f0c4105.tar.bz2
spack-d21339bae5e14a0b862845ec051358fe2f0c4105.tar.xz
spack-d21339bae5e14a0b862845ec051358fe2f0c4105.zip
fasd: new package (#23238)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/fasd/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/fasd/package.py b/var/spack/repos/builtin/packages/fasd/package.py
new file mode 100644
index 0000000000..d0e0519f10
--- /dev/null
+++ b/var/spack/repos/builtin/packages/fasd/package.py
@@ -0,0 +1,21 @@
+# Copyright 2013-2021 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 Fasd(MakefilePackage):
+ """Fasd (pronounced similar to "fast") is a command-line productivity
+ booster. Fasd offers quick access to files and directories for POSIX shells.
+ """
+
+ homepage = "https://github.com/clvv/fasd"
+ url = "https://github.com/clvv/fasd/archive/refs/tags/1.0.1.tar.gz"
+ git = "https://github.com/clvv/fasd.git"
+
+ version('1.0.1', sha256='88efdfbbed8df408699a14fa6c567450bf86480f5ff3dde42d0b3e1dee731f65')
+
+ def install(self, spec, prefix):
+ make('PREFIX={0}'.format(prefix), 'install')