summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/man-db/package.py
blob: 8c190f1b55984871f5cb2287e2906d06fbc01105 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright 2013-2022 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 ManDb(AutotoolsPackage):
    """man-db is an implementation of the standard Unix
    documentation system accessed using the man command. It uses
    a Berkeley DB database in place of the traditional
    flat-text whatis databases."""

    homepage = "https://www.nongnu.org/man-db/"
    git      = "https://gitlab.com/cjwatson/man-db"
    url      = "https://download.savannah.nongnu.org/releases/man-db/man-db-2.10.1.tar.xz"

    version('2.10.2', sha256='ee97954d492a13731903c9d0727b9b01e5089edbd695f0cdb58d405a5af5514d')
    version('2.10.1', sha256='2ffd8f2e80122fe72e60c740c851e6a3e15c9a7921185eb4752c1c672824bed6')
    version('2.7.6.1', sha256='08edbc52f24aca3eebac429b5444efd48b9b90b9b84ca0ed5507e5c13ed10f3f')

    depends_on('pkgconfig', type='build')
    depends_on('gettext')
    depends_on('libpipeline@1.5.0:', when='@2.8.0:')
    depends_on('libpipeline@1.4.0:', when='@2.7.1:')
    depends_on('libpipeline@1.3.0:', when='@2.6.7:')
    depends_on('libpipeline@1.1.0:', when='@2.6.0:')
    depends_on('flex')
    depends_on('gdbm')
    depends_on('groff', type=('build', 'link', 'run'))

    # TODO: add gzip support via a new package.
    # man pages are typically compressed, include all available
    # compression libraries
    depends_on('bzip2', type=('build', 'link', 'run'))
    depends_on('xz',    type=('build', 'link', 'run'))

    def configure_args(self):
        return [
            '--disable-setuid',
            '--without-systemdsystemunitdir',
            '--without-systemdtmpfilesdir'
        ]