summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/daligner/package.py
blob: 8760ff72c5368d6809e49bd55fc3aaa3af387a42 (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
# Copyright 2013-2023 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.package 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", sha256="2fb03616f0d60df767fbba7c8f0021ec940c8d822ab2011cf58bd56a8b9fb414")

    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)