summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/startup-notification/package.py
blob: 48b6a866885404129b973834bfedd80865deeac9 (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-2023 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.package import *


class StartupNotification(AutotoolsPackage):
    """startup-notification contains a reference implementation of the
    freedesktop startup notification protocol."""

    homepage = "https://www.freedesktop.org/wiki/Software/startup-notification/"
    url = "https://www.freedesktop.org/software/startup-notification/releases/startup-notification-0.12.tar.gz"

    license("LGPL-2.0-or-later")

    version("0.12", sha256="3c391f7e930c583095045cd2d10eb73a64f085c7fde9d260f2652c7cb3cfbe4a")

    depends_on("libx11")
    depends_on("libxcb")
    depends_on("xcb-util")