summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/tmhmm/package.py
blob: 4f87f0c85cf5b1df730defabbba4821a8d86a34f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# 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)

import os

from spack import *


class Tmhmm(Package):
    """Transmembrane helices in proteins

       Note: A manual download is required for TMHMM.
       Spack will search your current directory for the download file.
       Alternatively, add this file to a mirror so that Spack can find it.
       For instructions on how to set up a mirror, see
       https://spack.readthedocs.io/en/latest/mirrors.html"""

    homepage = "http://www.cbs.dtu.dk/cgi-bin/nph-sw_request?tmhmm"
    url      = "file://{0}/tmhmm-2.0c.Linux.tar.gz".format(os.getcwd())
    manual_download = True

    version('2.0c', '359db0c4ecf84d1ade5786abe844d54e')

    depends_on('perl', type='run')

    def patch(self):
        with working_dir('bin'):
            tmhmm = FileFilter('tmhmmformat.pl')
            tmhmm.filter('#!/usr/local/bin/perl -w',
                         '#!/usr/bin/env perl')
            tmhmm = FileFilter('tmhmm')
            tmhmm.filter('#!/usr/local/bin/perl',
                         '#!/usr/bin/env perl')

    def install(self, spec, prefix):
        install_tree('bin', prefix.bin)
        install_tree('lib', prefix.lib)