Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions easybuild/easyconfigs/t/tcsh/tcsh-6.24.10-GCCcore-12.3.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# #
# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
#
# Copyright:: Copyright 2012-2013 University of Luxembourg/Computer Science and Communications Research Unit
# Authors:: Valentin Plugaru <[email protected]>
# License:: MIT/GPL
# $Id$
#
# This work implements a part of the HPCBIOS project and is a component of the policy:
# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_05-06.html
# #
easyblock = 'ConfigureMake'

name = 'tcsh'
version = '6.24.10'

homepage = 'https://www.tcsh.org'
description = """Tcsh is an enhanced, but completely compatible version of the Berkeley UNIX C shell (csh).
It is a command language interpreter usable both as an interactive login shell and a shell script command
processor. It includes a command-line editor, programmable word completion, spelling correction, a history
mechanism, job control and a C-like syntax."""

toolchain = {'name': 'GCCcore', 'version': '12.3.0'}

source_urls = [
'https://astron.com/pub/%(namelower)s',
'https://astron.com/pub/%(namelower)s/old',
'ftp://ftp.astron.com/pub/%(namelower)s',
'ftp://ftp.astron.com/pub/%(namelower)s/old',
]
sources = [SOURCELOWER_TAR_GZ]
checksums = ['13475c0fbeb74139d33ed793bf00ffbbb2ac2dc9fb1d44467a410760aba36664']

builddependencies = [
('binutils', '2.40'),
]
dependencies = [
('ncurses', '6.4'),
]

postinstallcmds = ['ln -s %(name)s %(installdir)s/bin/csh']

sanity_check_paths = {
'files': ['bin/%(name)s', 'bin/csh'],
'dirs': [],
}

moduleclass = 'tools'