summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/daligner/package.py
blob: 6fcadcd5f3320d4615f3612cc324aa4c162ce4ad (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
# 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)

from spack import *


class Daligner(MakefilePackage):
    """Daligner: The Dazzler "Overlap" Module."""

    homepage = "https://github.com/thegenemyers/DALIGNER"
    url      = "https://github.com/thegenemyers/DALIGNER/archive/V1.0.tar.gz"

    version('1.0', 'f1b4c396ae062caa4c0e6423ba0725ef')

    def edit(self, spec, prefix):
        makefile = FileFilter('Makefile')
        kwargs = {'ignore_absent': False, 'backup': False, 'string': True}
        makefile.filter('cp $(ALL) ~/bin',
                        'cp $(ALL) {0}'.format(prefix.bin),
                        **kwargs)
        # He changed the Makefile in commit dae119.
        # You'll need this instead if/when he cuts a new release
        # or if you try to build from the tip of master.
        # makefile.filter('DEST_DIR = .*',
        #                'DEST_DIR = {0}'.format(prefix.bin))
        # or pass DEST_DIR in to the make

    @run_before('install')
    def make_prefix_dot_bin(self):
        mkdir(prefix.bin)