parent
a999092a93
commit
74fe729be2
@ -13,6 +13,8 @@ class Plink(Package):
|
||||
|
||||
homepage = "https://www.cog-genomics.org/plink/1.9/"
|
||||
|
||||
version('1.9-beta6.10', 'ef01956d0ca9344fe420cb3ea1d94698',
|
||||
url='http://s3.amazonaws.com/plink1-assets/plink_linux_x86_64_20190617.zip')
|
||||
version('1.9-beta5', '737545504ae19348a44a05fa69b75c28',
|
||||
url='https://github.com/chrchang/plink-ng/archive/b15c19f.tar.gz')
|
||||
version('1.07', 'fd0bafeda42151b20534e4f97b0d97df',
|
||||
@ -21,6 +23,8 @@ class Plink(Package):
|
||||
|
||||
depends_on('atlas', when='@1.9-beta5')
|
||||
depends_on('netlib-lapack', when='@1.9-beta5')
|
||||
depends_on('atlas', when='@1.9-beta6.10')
|
||||
depends_on('netlib-lapack', when='@1.9-beta6.10')
|
||||
|
||||
def install(self, spec, prefix):
|
||||
mkdirp(prefix.bin)
|
||||
@ -32,3 +36,5 @@ def install(self, spec, prefix):
|
||||
first_compile = Executable('./plink_first_compile')
|
||||
first_compile()
|
||||
install('plink', prefix.bin)
|
||||
if spec.version == Version('1.9-beta6.10'):
|
||||
install('plink', prefix.bin)
|
||||
|
Loading…
Reference in New Issue
Block a user