2023-01-19 06:30:17 +08:00
|
|
|
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
|
2023-01-13 04:52:57 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
|
|
from spack.package import *
|
|
|
|
|
|
|
|
|
|
|
|
class Fpart(AutotoolsPackage):
|
|
|
|
"""Fpart is a filesystem partitioner. It helps you sort file trees and pack them
|
|
|
|
into bags (called "partitions"). Fpsync wraps fpart and rsync, tar, or cpio
|
|
|
|
to launch several synchronization jobs in parallel."""
|
|
|
|
|
|
|
|
homepage = "https://www.fpart.org"
|
|
|
|
url = "https://github.com/martymac/fpart/archive/refs/tags/fpart-1.5.1.tar.gz"
|
|
|
|
git = "https://github.com/martymac/fpart.git"
|
|
|
|
|
2023-02-02 13:07:25 +08:00
|
|
|
maintainers("drkrynstrng")
|
2023-01-13 04:52:57 +08:00
|
|
|
|
|
|
|
version("master", branch="master")
|
|
|
|
version("1.5.1", sha256="c353a28f48e4c08f597304cb4ebb88b382f66b7fabfc8d0328ccbb0ceae9220c")
|
|
|
|
|
|
|
|
depends_on("autoconf", type="build")
|
|
|
|
depends_on("automake", type="build")
|
|
|
|
depends_on("libtool", type="build")
|
|
|
|
# fpsync has the following run dependencies
|
|
|
|
depends_on("rsync", type="run")
|
|
|
|
depends_on("tar", type="run")
|
|
|
|
depends_on("cpio", type="run")
|