30 lines
1002 B
Python
30 lines
1002 B
Python
# Copyright 2013-2020 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 import *
|
|
|
|
|
|
class Xphelloworld(AutotoolsPackage, XorgPackage):
|
|
"""Xprint sample applications."""
|
|
|
|
homepage = "http://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')
|