summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/xxd-standalone/package.py
blob: c0bf61e3c76574d289d129553306958250e4cff8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright 2013-2024 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)

import os

from spack.package import *


class XxdStandalone(MakefilePackage):
    """xxd creates a hex dump of a given file or standard input.
    It is bundled with vim, but as xxd is used in build scripts,
    it makes sense to have it available as a standalone package."""

    homepage = "https://www.vim.org/"
    url = "https://github.com/vim/vim/archive/v8.2.1201.tar.gz"

    maintainers("haampie")
    build_targets = ["-C", os.path.join("src", "xxd")]

    provides("xxd")

    license("Vim")

    version("8.2.1201", sha256="39032fe866f44724b104468038dc9ac4ff2c00a4b18c9a1e2c27064ab1f1143d")

    def install(self, spec, prefix):
        mkdirp(prefix.bin)
        install(os.path.join(self.build_directory, "src", "xxd", "xxd"), prefix.bin)