smof: new package at 2.13.1 (#11502)
This commit is contained in:
parent
c7a28ec1d4
commit
cc6f822cb1
29
var/spack/repos/builtin/packages/smof/package.py
Normal file
29
var/spack/repos/builtin/packages/smof/package.py
Normal 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'))
|
Loading…
Reference in New Issue
Block a user