18 lines
549 B
Python
18 lines
549 B
Python
# Copyright 2013-2020 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 Tig(AutotoolsPackage):
|
|
"""Text-mode interface for git"""
|
|
|
|
homepage = "https://jonas.github.io/tig/"
|
|
url = "https://github.com/jonas/tig/releases/download/tig-2.2.2/tig-2.2.2.tar.gz"
|
|
|
|
version('2.2.2', sha256='316214d87f7693abc0cbe8ebbb85decdf5e1b49d7ad760ac801af3dd73385e35')
|
|
|
|
depends_on('ncurses')
|