16 lines
554 B
Python
16 lines
554 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 MirrorXorgBroken(AutotoolsPackage, XorgPackage):
|
|
"""Simple x.org package"""
|
|
|
|
homepage = "http://cgit.freedesktop.org/xorg/util/macros/"
|
|
url = "https://www.x.org/archive/individual/util/util-macros-1.19.1.tar.bz2"
|
|
|
|
version('1.19.1', sha256='18d459400558f4ea99527bc9786c033965a3db45bf4c6a32eefdc07aa9e306a6')
|