summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/xxd-standalone/package.py
blob: f74253e858e992afdc6dba948d54da6793a65c2b (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
# Copyright 2013-2021 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 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')

    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)