2021-01-02 15:10:28 +08:00
|
|
|
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-07-05 20:30:48 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-07-05 20:30:48 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
2017-01-19 02:34:09 +08:00
|
|
|
class Gts(AutotoolsPackage):
|
2016-07-05 20:30:48 +08:00
|
|
|
"""GTS stands for the GNU Triangulated Surface Library.
|
|
|
|
|
|
|
|
It is an Open Source Free Software Library intended to provide a set of
|
|
|
|
useful functions to deal with 3D surfaces meshed with interconnected
|
|
|
|
triangles. The source code is available free of charge under the Free
|
|
|
|
Software LGPL license.
|
|
|
|
|
|
|
|
The code is written entirely in C with an object-oriented approach
|
|
|
|
based mostly on the design of GTK+. Careful attention is paid to
|
|
|
|
performance related issues as the initial goal of GTS is to provide a
|
|
|
|
simple and efficient library to scientists dealing with 3D computational
|
|
|
|
surface meshes.
|
|
|
|
"""
|
|
|
|
|
|
|
|
homepage = "http://gts.sourceforge.net/index.html"
|
|
|
|
url = "http://gts.sourceforge.net/tarballs/gts-snapshot-121130.tar.gz"
|
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('121130', sha256='c23f72ab74bbf65599f8c0b599d6336fabe1ec2a09c19b70544eeefdc069b73b')
|
2016-07-05 20:30:48 +08:00
|
|
|
|
|
|
|
depends_on('glib')
|