spack/var/spack/repos/builtin/packages/poamsa/package.py
Todd Gamblin eea786f4e8 relicense: replace LGPL headers with Apache-2.0/MIT SPDX headers
- remove the old LGPL license headers from all files in Spack
- add SPDX headers to all files
  - core and most packages are (Apache-2.0 OR MIT)
  - a very small number of remaining packages are LGPL-2.1-only
2018-10-17 14:42:06 -07:00

32 lines
1.1 KiB
Python

# Copyright 2013-2018 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)
from spack import *
class Poamsa(MakefilePackage):
"""POA is Partial Order Alignment, a fast program for multiple sequence
alignment in bioinformatics. Its advantages are speed, scalability,
sensitivity, and the superior ability to handle branching / indels
in the alignment."""
homepage = "https://sourceforge.net/projects/poamsa"
url = "https://downloads.sourceforge.net/project/poamsa/poamsa/2.0/poaV2.tar.gz"
version('2.0', '9e2eb270d4867114406f53dab1311b2b')
def url_for_version(self, version):
url = "https://downloads.sourceforge.net/project/poamsa/poamsa/{0}/poaV{1}.tar.gz"
return url.format(version.dotted, version.up_to(1))
def build(self, spec, prefix):
make('poa')
def install(self, spec, prefix):
mkdirp(prefix.bin)
mkdirp(prefix.lib)
install('poa', prefix.bin)
install('liblpo.a', prefix.lib)