spack/var/spack/repos/builtin/packages/abduco/package.py
Todd Gamblin a8ccb8e116 copyrights: update all files with license headers for 2021
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files
- [x] update all licensed files to say 2013-2021 using
      `spack license update-copyright-year`
- [x] appease mypy with some additions to package.py that needed
      for oneapi.py
2021-01-02 12:12:00 -08:00

25 lines
1.0 KiB
Python

# 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 Abduco(MakefilePackage):
"""abduco provides session management i.e. it allows programs to be
run independently from its controlling terminal. That is programs
can be detached - run in the background - and then later reattached.
Together with dvtm it provides a simpler and cleaner alternative to
tmux or screen."""
homepage = "https://github.com/martanne/abduco"
url = "https://github.com/martanne/abduco/archive/v0.6.tar.gz"
version('0.6', sha256='647d0381418f43a38f861d151b0efb2e3458ec651914e7d477956768b0af9bb7')
version('0.5', sha256='bf22226a4488355a7001a5dabbd1e8e3b7e7645efd1519274b956fcb8bcff086')
version('0.4', sha256='bda3729df116ce41f9a087188d71d934da2693ffb1ebcf33b803055eb478bcbb')
def install(self, spec, prefix):
make('PREFIX={0}'.format(prefix), 'install')