spack/var/spack/repos/builtin/packages/xphelloworld/package.py
Todd Gamblin 3118647802
Update copyright year to 2024 (#41919)
It was time to run `spack license update-copyright-year` again.
2024-01-02 09:21:30 +01:00

30 lines
1011 B
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 Xphelloworld(AutotoolsPackage, XorgPackage):
"""Xprint sample applications."""
homepage = "https://cgit.freedesktop.org/xorg/app/xphelloworld"
xorg_mirror_path = "app/xphelloworld-1.0.1.tar.gz"
version("1.0.1", sha256="ead6437c4dc9540698a41e174c9d1ac792de07baeead81935d72cb123196f866")
depends_on("libx11")
depends_on("libxaw")
depends_on("libxprintapputil")
depends_on("libxprintutil")
depends_on("libxp")
depends_on("libxt")
# FIXME: xphelloworld requires libxaw8, but libxaw only provides 6 and 7.
# It looks like xprint support was removed from libxaw at some point.
# But even the oldest version of libxaw doesn't build libxaw8.
depends_on("pkgconfig", type="build")
depends_on("util-macros", type="build")