summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/sdl2-ttf/package.py
blob: 36cceb900612852fdce742ef18468a57ed793218 (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 Sdl2Ttf(CMakePackage):
    """Simple DirectMedia Layer 2 TrueType Fonts library"""

    homepage = "https://www.libsdl.org/projects/SDL_ttf/"
    url = "https://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-2.20.2.tar.gz"
    git = "https://github.com/libsdl-org/SDL_ttf.git"

    license("Zlib")

    version("2.20.2", sha256="9dc71ed93487521b107a2c4a9ca6bf43fb62f6bddd5c26b055e6b91418a22053")

    depends_on("sdl2")

    maintainers("georgemalerbo", "amklinv")