From 7a363e2a3f4183a3294eb19b80794a3093c5eddb Mon Sep 17 00:00:00 2001 From: darmac Date: Sat, 30 May 2020 23:47:47 +0800 Subject: [PATCH] Add new package: netkit-ftp (#16876) * Add new package: netkit-ftp * remove parallel constraint --- .../builtin/packages/netkit-ftp/package.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 var/spack/repos/builtin/packages/netkit-ftp/package.py diff --git a/var/spack/repos/builtin/packages/netkit-ftp/package.py b/var/spack/repos/builtin/packages/netkit-ftp/package.py new file mode 100644 index 00000000000..fe76bea86b4 --- /dev/null +++ b/var/spack/repos/builtin/packages/netkit-ftp/package.py @@ -0,0 +1,20 @@ +# 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 NetkitFtp(AutotoolsPackage): + """netkit-ftp is the original file transfer client program for Linux.""" + + homepage = "http://ftp.uk.linux.org/pub/linux/Networking/netkit" + git = "https://github.com/mmaraya/netkit-ftp.git" + + version('master', branch='master') + + def install(self, spec, prefix): + mkdirp(prefix.bin) + mkdirp(prefix.man.man1) + make('install')