summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/xtrans/package.py
blob: 1f53c1d377e471cba7e5e3d39713edb530d7f130 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2019 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 Xtrans(AutotoolsPackage):
    """xtrans is a library of code that is shared among various X packages to
    handle network protocol transport in a modular fashion, allowing a
    single place to add new transport types.  It is used by the X server,
    libX11, libICE, the X font server, and related components."""

    homepage = "http://cgit.freedesktop.org/xorg/lib/libxtrans"
    url      = "https://www.x.org/archive//individual/lib/xtrans-1.3.5.tar.gz"

    version('1.3.5', '6e4eac1b7c6591da0753052e1eccfb58')

    depends_on('pkgconfig', type='build')
    depends_on('util-macros', type='build')