2022-04-04 16:32:25 +08:00
|
|
|
# Copyright 2013-2021 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)
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
2022-04-04 16:32:25 +08:00
|
|
|
|
|
|
|
|
|
|
|
class RktZoLib(RacketPackage):
|
|
|
|
"""Libraries for handling zo files."""
|
|
|
|
|
|
|
|
git = "ssh://git@github.com/racket/racket.git"
|
|
|
|
|
|
|
|
maintainers = ['elfprince13']
|
|
|
|
|
|
|
|
version('1.3', commit='cab83438422bfea0e4bd74bc3e8305e6517cf25f') # tag='v1.3'
|
|
|
|
depends_on('rkt-base@8.3:', type=('build', 'run'), when='@1.3')
|
|
|
|
|
|
|
|
name = 'zo-lib'
|
|
|
|
pkgs = True
|
|
|
|
subdirectory = "pkgs/{0}".format(name)
|