25 lines
731 B
Python
25 lines
731 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 Freeglut(CMakePackage):
|
|
"""FreeGLUT is a free-software/open-source alternative to the OpenGL
|
|
Utility Toolkit (GLUT) library"""
|
|
|
|
homepage = "http://freeglut.sourceforge.net/"
|
|
url = "http://prdownloads.sourceforge.net/freeglut/freeglut-3.0.0.tar.gz"
|
|
|
|
version('3.0.0', '90c3ca4dd9d51cf32276bc5344ec9754')
|
|
|
|
depends_on('gl')
|
|
depends_on('glu')
|
|
depends_on('libx11')
|
|
depends_on('libxrandr')
|
|
depends_on('libxi')
|
|
depends_on('xrandr')
|
|
depends_on('inputproto')
|