summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/pilercr/package.py
blob: 684563674ab47abbd7af574017336d1157b91ac1 (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
# 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 Pilercr(MakefilePackage):
    """Identification and analysis of CRISPR repeats."""

    homepage = "http://www.drive5.com/pilercr/"
    url = "http://www.drive5.com/pilercr/pilercr1.06.tar.gz"

    version("1.06", sha256="50175f7aa171674cda5ba255631f340f9cc7f80e8cc25135a4cb857147d91068")

    @property
    def build_targets(self):
        targets = []
        targets.append("GPP = {0}".format(spack_cxx))
        targets.append("CFLAGS = -O3 -DNDEBUG=1")
        targets.append("LDLIBS = -lm")
        return targets

    def install(self, spec, prefix):
        mkdirp(prefix.bin)
        install("pilercr", prefix.bin)