diff options
author | Arne Becker <101113822+EbiArnie@users.noreply.github.com> | 2023-12-19 08:38:42 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-19 09:38:42 +0100 |
commit | 091cd47caa2fefc815fd1e9b6c97e008da34facb (patch) | |
tree | 874d7167a5084fcc093568873e263689456d0062 /var | |
parent | 1ebf1a0c6c10e8922ac512d24c902e2c97446770 (diff) | |
download | spack-091cd47caa2fefc815fd1e9b6c97e008da34facb.tar.gz spack-091cd47caa2fefc815fd1e9b6c97e008da34facb.tar.bz2 spack-091cd47caa2fefc815fd1e9b6c97e008da34facb.tar.xz spack-091cd47caa2fefc815fd1e9b6c97e008da34facb.zip |
tnftp: new package (#41763)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/tnftp/package.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/tnftp/package.py b/var/spack/repos/builtin/packages/tnftp/package.py new file mode 100644 index 0000000000..66882d96b6 --- /dev/null +++ b/var/spack/repos/builtin/packages/tnftp/package.py @@ -0,0 +1,22 @@ +# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# Copyright 2023 EMBL-European Bioinformatics Institute +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack.package import * + + +class Tnftp(AutotoolsPackage): + """Tnftp is an FTP client. It is the default FTP client included with many + BSD operating systems and Darwin""" + + homepage = "https://ftp.netbsd.org/pub/pkgsrc/current/pkgsrc/net/tnftpd/README.html" + url = "https://cdn.netbsd.org/pub/NetBSD/misc/tnftp/tnftp-20230507.tar.gz" + + maintainers("EbiArnie") + + version("20230507", sha256="be0134394bd7d418a3b34892b0709eeb848557e86474e1786f0d1a887d3a6580") + + depends_on("bison") + depends_on("ncurses") |