cups: fix url; add v2.4.10 (#46624)
Co-authored-by: wdconinc <wdconinc@users.noreply.github.com>
This commit is contained in:
parent
d48cf4ea3e
commit
6ea8079919
@ -14,18 +14,25 @@ class Cups(AutotoolsPackage):
|
||||
install."""
|
||||
|
||||
homepage = "https://www.cups.org/"
|
||||
url = "https://github.com/apple/cups/releases/download/v2.2.3/cups-2.2.3-source.tar.gz"
|
||||
url = (
|
||||
"https://github.com/OpenPrinting/cups/releases/download/v2.4.10/cups-2.4.10-source.tar.gz"
|
||||
)
|
||||
|
||||
license("Apache-2.0")
|
||||
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") # generated
|
||||
depends_on("cxx", type="build") # generated
|
||||
depends_on("c", type="build")
|
||||
depends_on("cxx", type="build")
|
||||
depends_on("pkgconfig", type="build")
|
||||
|
||||
depends_on("gnutls")
|
||||
depends_on("pkgconfig", type="build")
|
||||
|
||||
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"]
|
||||
|
Loading…
Reference in New Issue
Block a user