2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-05-12 12:22:25 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-05-07 06:33:26 +08:00
|
|
|
from spack import *
|
|
|
|
|
2016-08-10 16:50:00 +08:00
|
|
|
|
2016-05-07 06:33:26 +08:00
|
|
|
class Libvterm(Package):
|
|
|
|
"""An abstract library implementation of a terminal emulator"""
|
|
|
|
homepage = "http://www.leonerd.org.uk/code/libvterm/"
|
|
|
|
url = "http://www.leonerd.org.uk/code/libvterm/libvterm-0+bzr681.tar.gz"
|
|
|
|
|
|
|
|
version('681', '7a4325a7350b7092245c04e8ee185ac3')
|
|
|
|
|
2018-12-04 20:01:37 +08:00
|
|
|
depends_on('libtool', type='build')
|
|
|
|
|
2016-05-07 06:33:26 +08:00
|
|
|
def install(self, spec, prefix):
|
|
|
|
make()
|
|
|
|
make("install", "PREFIX=" + prefix)
|