smof: new package at 2.13.1 (#11502)

This commit is contained in:
Justin S 2019-05-17 14:44:35 -05:00 committed by Levi Baber
parent c7a28ec1d4
commit cc6f822cb1

View File

@ -0,0 +1,29 @@
# 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)
# See the Spack documentation for more information on packaging.
from spack import *
from os import symlink
class Smof(Package):
"""Explore and analyze biological sequence data"""
homepage = "https://github.com/incertae-sedis/smof"
url = "https://github.com/incertae-sedis/smof/archive/2.13.1.tar.gz"
version('2.13.1', sha256='bae75703728c62398f2af58b142ab2555f9be2224e13ff108913607777ea2a2e')
depends_on('python@3:', type='run')
def install(self, spec, prefix):
# install sources
install_tree('.', prefix)
# add command
mkdirp(prefix.bin)
symlink(join_path(prefix, 'smof.py'),
join_path(prefix.bin, 'smof'))