31 lines
1.0 KiB
Python
31 lines
1.0 KiB
Python
# 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 *
|
|
import os
|
|
|
|
|
|
class Bamtools(CMakePackage):
|
|
"""C++ API & command-line toolkit for working with BAM data."""
|
|
|
|
homepage = "https://github.com/pezmaster31/bamtools"
|
|
url = "https://github.com/pezmaster31/bamtools/archive/v2.4.0.tar.gz"
|
|
|
|
version('2.5.1', '98e90632058f85bd5eed6088b3ff912e')
|
|
version('2.5.0', 'dd4185bdba6e3adf2c24b7f93a57233d')
|
|
version('2.4.1', '41cadf513f2744256851accac2bc7baa')
|
|
version('2.4.0', '6139d00c1b1fe88fe15d094d8a74d8b9')
|
|
version('2.3.0', 'd327df4ba037d6eb8beef65d7da75ebc')
|
|
version('2.2.3', '6eccd3e45e4ba12a68daa3298998e76d')
|
|
|
|
depends_on('zlib', type='link')
|
|
|
|
def cmake_args(self):
|
|
args = []
|
|
rpath = self.rpath
|
|
rpath.append(os.path.join(self.prefix.lib, "bamtools"))
|
|
args.append("-DCMAKE_INSTALL_RPATH=%s" % ':'.join(rpath))
|
|
return args
|