summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/netkit-ftp/package.py
blob: 7428f10c7c19571178d83ffccc46ffabc623aaa2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2023 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.package 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"

    license("BSD-4-Clause-UC")

    version("master", branch="master")

    def install(self, spec, prefix):
        mkdirp(prefix.bin)
        mkdirp(prefix.man.man1)
        make("install")