fpart: Confirm license and c dependency (#46509)

This commit is contained in:
Derek Ryan Strong 2024-09-22 05:15:56 -07:00 committed by GitHub
parent 639990c385
commit 73125df0ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,14 +17,12 @@ class Fpart(AutotoolsPackage):
maintainers("drkrynstrng") maintainers("drkrynstrng")
license("BSD-2-Clause") license("BSD-2-Clause", checked_by="drkrynstrng")
version("master", branch="master") version("master", branch="master")
version("1.6.0", sha256="ed1fac2853fc421071b72e4c5d8455a231bc30e50034db14af8b0485ece6e097") version("1.6.0", sha256="ed1fac2853fc421071b72e4c5d8455a231bc30e50034db14af8b0485ece6e097")
version("1.5.1", sha256="c353a28f48e4c08f597304cb4ebb88b382f66b7fabfc8d0328ccbb0ceae9220c") version("1.5.1", sha256="c353a28f48e4c08f597304cb4ebb88b382f66b7fabfc8d0328ccbb0ceae9220c")
depends_on("c", type="build") # generated
variant("embfts", default=False, description="Build with embedded fts functions") variant("embfts", default=False, description="Build with embedded fts functions")
variant("static", default=False, description="Build static binary") variant("static", default=False, description="Build static binary")
variant("debug", default=False, description="Build with debugging support") variant("debug", default=False, description="Build with debugging support")
@ -37,6 +35,7 @@ class Fpart(AutotoolsPackage):
description="Tools used by fpsync to copy files", description="Tools used by fpsync to copy files",
) )
depends_on("c", type="build")
depends_on("autoconf", type="build") depends_on("autoconf", type="build")
depends_on("automake", type="build") depends_on("automake", type="build")
depends_on("libtool", type="build") depends_on("libtool", type="build")