soapdenovo-trans: add v1.0.5 (#30629)

This commit is contained in:
snehring 2022-05-12 12:14:49 -05:00 committed by GitHub
parent e00c8a7d98
commit 245b95223d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,11 +13,13 @@ class SoapdenovoTrans(MakefilePackage):
homepage = "https://github.com/aquaskyline/SOAPdenovo-Trans" homepage = "https://github.com/aquaskyline/SOAPdenovo-Trans"
url = "https://github.com/aquaskyline/SOAPdenovo-Trans/archive/1.0.4.tar.gz" url = "https://github.com/aquaskyline/SOAPdenovo-Trans/archive/1.0.4.tar.gz"
maintainers = ['snehring']
version('1.0.5', sha256='c1903c0d81142270db95916e2833400f72c4841b5c9194f182c19ebda418936f')
version('1.0.4', sha256='378a54cde0ebe240fb515ba67197c053cf95393645c1ae1399b3a611be2a9795') version('1.0.4', sha256='378a54cde0ebe240fb515ba67197c053cf95393645c1ae1399b3a611be2a9795')
depends_on('zlib', type='link') depends_on('zlib', type='link')
depends_on('samtools@0.1.8', type='link') depends_on('samtools@0.1.8', type='link', when='target=aarch64:')
build_directory = 'src' build_directory = 'src'
@ -35,4 +37,5 @@ def build(self, spec, prefix):
make('127mer=1', parallel=False) make('127mer=1', parallel=False)
def install(self, spec, prefix): def install(self, spec, prefix):
install_tree('.', prefix.bin) mkdirp(prefix.bin)
install('SOAPdenovo-Trans-*mer', prefix.bin)