2023-01-19 06:30:17 +08:00
|
|
|
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
|
2020-09-24 09:42:21 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
2020-09-24 09:42:21 +08:00
|
|
|
|
|
|
|
|
|
|
|
class Mlocate(AutotoolsPackage):
|
|
|
|
"""mlocate is a locate/updatedb implementation. The 'm' stands for "merging":
|
|
|
|
updatedb reuses the existing database to avoid rereading most of the file
|
|
|
|
system, which makes updatedb faster and does not trash the system caches as
|
|
|
|
much."""
|
|
|
|
|
|
|
|
homepage = "https://pagure.io/mlocate"
|
|
|
|
url = "https://releases.pagure.org/mlocate/mlocate-0.26.tar.xz"
|
|
|
|
|
|
|
|
version("0.26", sha256="3063df79fe198fb9618e180c54baf3105b33d88fe602ff2d8570aaf944f1263e")
|
|
|
|
version("0.25", sha256="ab95c111f9dba35b5690896180dd0a7639dbf07d70b862fcb0731264d9273951")
|
|
|
|
version("0.24", sha256="5787bee846735e21ff57df9e345d5db73d684d2cea9efc0f387462ccfbc6796f")
|