27 lines
763 B
Python
27 lines
763 B
Python
# Copyright Spack Project Developers. See COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class Cap3(Package):
|
|
"""CAP3 is DNA Sequence Assembly Program"""
|
|
|
|
homepage = "http://seq.cs.iastate.edu/"
|
|
url = "http://seq.cs.iastate.edu/CAP3/cap3.linux.x86_64.tar"
|
|
|
|
version(
|
|
"2015-02-11",
|
|
sha256="3aff30423e052887925b32f31bdd76764406661f2be3750afbf46341c3d38a06",
|
|
url="http://seq.cs.iastate.edu/CAP3/cap3.linux.x86_64.tar",
|
|
)
|
|
|
|
def install(self, spec, prefix):
|
|
mkdirp(prefix.bin)
|
|
install("cap3", prefix.bin)
|
|
install("formcon", prefix.bin)
|
|
mkdirp(prefix.doc)
|
|
install("doc", prefix.doc)
|
|
install("aceform", prefix.doc)
|