summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/libsm/package.py
blob: 50e0fb3fca18bffffb3ab3003cf2c9f63481cadd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2018 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 Libsm(AutotoolsPackage):
    """libSM - X Session Management Library."""

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

    version('1.2.2', '18e5084ed9500b1b47719fd1758f0ec8')

    depends_on('libice@1.0.5:')

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