spack/var/spack/repos/builtin/packages/cups/package.py
Wouter Deconinck 6ea8079919
cups: fix url; add v2.4.10 (#46624)
Co-authored-by: wdconinc <wdconinc@users.noreply.github.com>
2024-09-30 10:47:53 +02:00

40 lines
1.5 KiB
Python

# Copyright 2013-2024 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 Cups(AutotoolsPackage):
"""CUPS is the standards-based, open source printing system developed by
Apple Inc. for macOS and other UNIX-like operating systems. CUPS uses the
Internet Printing Protocol (IPP) to support printing to local and network
printers. This provides the core CUPS libraries, not a complete CUPS
install."""
homepage = "https://www.cups.org/"
url = (
"https://github.com/OpenPrinting/cups/releases/download/v2.4.10/cups-2.4.10-source.tar.gz"
)
license("Apache-2.0", checked_by="wdconinc")
version("2.4.10", sha256="d75757c2bc0f7a28b02ee4d52ca9e4b1aa1ba2affe16b985854f5336940e5ad7")
version("2.3.3", sha256="261fd948bce8647b6d5cb2a1784f0c24cc52b5c4e827b71d726020bcc502f3ee")
version("2.2.3", sha256="66701fe15838f2c892052c913bde1ba106bbee2e0a953c955a62ecacce76885f")
depends_on("c", type="build")
depends_on("cxx", type="build")
depends_on("pkgconfig", type="build")
depends_on("gnutls")
def url_for_version(self, version):
org = "apple" if version < Version("2.4") else "OpenPrinting"
return f"https://github.com/{org}/cups/releases/download/v{version}/cups-{version}-source.tar.gz"
def configure_args(self):
args = ["--enable-gnutls", "--with-components=core"]
return args