rsem: add zlib dependency (#50102)

This commit is contained in:
Derek Ryan Strong 2025-04-22 11:52:31 -07:00 committed by GitHub
parent 423548fc90
commit c62cc6a45d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,15 +18,17 @@ class Rsem(MakefilePackage):
version("1.3.1", sha256="93c749a03ac16e94b1aab94d032d4fd5687d3261316ce943ecb89d3ae3ec2e11")
version("1.3.0", sha256="ecfbb79c23973e1c4134f05201f4bd89b0caf0ce4ae1ffd7c4ddc329ed4e05d2")
depends_on("c", type="build") # generated
depends_on("cxx", type="build") # generated
depends_on("c", type="build")
depends_on("cxx", type="build")
depends_on("r", type=("build", "run"))
depends_on("perl", type=("build", "run"))
depends_on("python", type=("build", "run"))
depends_on("bowtie")
depends_on("bowtie2")
depends_on("star")
# The bundled samtools-1.3/htslib-1.3 is not compatible with zlib-ng
# https://github.com/samtools/htslib/issues/1257
depends_on("zlib")
def install(self, spec, prefix):
make("install", "DESTDIR=%s" % prefix, "prefix=")