
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
24 lines
710 B
Python
24 lines
710 B
Python
# Copyright 2013-2021 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 Xedit(AutotoolsPackage, XorgPackage):
|
|
"""Xedit is a simple text editor for X."""
|
|
|
|
homepage = "https://cgit.freedesktop.org/xorg/app/xedit"
|
|
xorg_mirror_path = "app/xedit-1.2.2.tar.gz"
|
|
|
|
version('1.2.2', sha256='7e2dacbc2caed81d462ee028e108866893217d55e35e4b860b09be2b409ee18f')
|
|
|
|
depends_on('libxaw')
|
|
depends_on('libxmu')
|
|
depends_on('libxt@1.0:')
|
|
depends_on('libx11')
|
|
|
|
depends_on('pkgconfig', type='build')
|
|
depends_on('util-macros', type='build')
|