diff options
author | Matthias Diener <mdiener@illinois.edu> | 2017-10-27 12:43:45 -0500 |
---|---|---|
committer | scheibelp <scheibel1@llnl.gov> | 2017-10-27 10:43:45 -0700 |
commit | 45bfcfa30aeb8817dbcdf21f1ee868cfda20ccb5 (patch) | |
tree | d0ee69204a3f708138852354e021679fcffb3eff | |
parent | f9599c1772b081fc412ff36b46c700f066bc789f (diff) | |
download | spack-45bfcfa30aeb8817dbcdf21f1ee868cfda20ccb5.tar.gz spack-45bfcfa30aeb8817dbcdf21f1ee868cfda20ccb5.tar.bz2 spack-45bfcfa30aeb8817dbcdf21f1ee868cfda20ccb5.tar.xz spack-45bfcfa30aeb8817dbcdf21f1ee868cfda20ccb5.zip |
Byobu: new package (#5974)
-rw-r--r-- | var/spack/repos/builtin/packages/byobu/package.py | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/byobu/package.py b/var/spack/repos/builtin/packages/byobu/package.py new file mode 100644 index 0000000000..cb243addb8 --- /dev/null +++ b/var/spack/repos/builtin/packages/byobu/package.py @@ -0,0 +1,37 @@ +############################################################################## +# Copyright (c) 2013-2017, Lawrence Livermore National Security, LLC. +# Produced at the Lawrence Livermore National Laboratory. +# +# This file is part of Spack. +# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved. +# LLNL-CODE-647188 +# +# For details, see https://github.com/llnl/spack +# Please also see the NOTICE and LICENSE files for our notice and the LGPL. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License (as +# published by the Free Software Foundation) version 2.1, February 1999. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and +# conditions of the GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +############################################################################## + +from spack import * + + +class Byobu(AutotoolsPackage): + """Byobu: Text-based window manager and terminal multiplexer.""" + + homepage = "http://www.byobu.co" + url = "https://launchpad.net/byobu/trunk/5.123/+download/byobu_5.123.orig.tar.gz" + + version('5.123', '961e0072c01c78c9ce4c20d1aa1b0dc4') + + depends_on('tmux', type=('build', 'run')) |