20 lines
668 B
Python
20 lines
668 B
Python
# 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 Sdl2(CMakePackage):
|
|
"""Simple DirectMedia Layer is a cross-platform development library designed
|
|
to provide low level access to audio, keyboard, mouse, joystick, and
|
|
graphics hardware via OpenGL and Direct3D."""
|
|
|
|
homepage = "https://wiki.libsdl.org/FrontPage"
|
|
url = "https://libsdl.org/release/SDL2-2.0.5.tar.gz"
|
|
|
|
version('2.0.5', 'd4055424d556b4a908aa76fad63abd3c')
|
|
|
|
depends_on('cmake@2.8.5:', type='build')
|