summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/motioncor2/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/motioncor2/package.py')
-rw-r--r--var/spack/repos/builtin/packages/motioncor2/package.py44
1 files changed, 17 insertions, 27 deletions
diff --git a/var/spack/repos/builtin/packages/motioncor2/package.py b/var/spack/repos/builtin/packages/motioncor2/package.py
index 304e369d99..91f1a493ce 100644
--- a/var/spack/repos/builtin/packages/motioncor2/package.py
+++ b/var/spack/repos/builtin/packages/motioncor2/package.py
@@ -1,27 +1,8 @@
-##############################################################################
-# Copyright (c) 2013-2017, Lawrence Livermore National Security, LLC.
-# Produced at the Lawrence Livermore National Laboratory.
+# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
-# This file is part of Spack.
-# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
-# LLNL-CODE-647188
-#
-# For details, see https://github.com/spack/spack
-# Please also see the NOTICE and LICENSE files for our notice and the LGPL.
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU Lesser General Public License (as
-# published by the Free Software Foundation) version 2.1, February 1999.
-#
-# This program is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
-# conditions of the GNU Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-##############################################################################
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
from spack import *
from glob import glob
@@ -36,15 +17,24 @@ class Motioncor2(Package):
to keep up with automated data collection."""
homepage = "http://msg.ucsf.edu/em/software"
- url = "http://msg.ucsf.edu/MotionCor2/MotionCor2-1.0.2.tar.gz"
+ url = "http://msg.ucsf.edu/MotionCor2/MotionCor2-1.1.0.zip"
- version('1.0.2', 'f2f4c5b09170ab8480ca657f14cdba2b')
- version('1.0.1', '73d94a80abdef9bf37bbc80fbbe76622')
- version('1.0.0', '490f4df8daa9f5ddb9eec3962ba3ddf5')
+ version('1.1.0',
+ '6e37e7ed63a9f0aab5d794b2604d5ba79333960bb9440a1a218630b03dbeaeac')
+ version('1.0.5',
+ '4efa55af25644bcff1ca7882419267b8c094c9cc6155b37d2c204b154c56f5a8',
+ url='http://msg.ucsf.edu/MotionCor2/MotionCor2-1.0.5.tar.gz')
+ version('1.0.4',
+ 'c75738160ac18d3f27c33677e78e63313d8ec2b023b5a46173428c3fa0451a94',
+ url='http://msg.ucsf.edu/MotionCor2/MotionCor2-1.0.4.tar.gz')
depends_on('cuda@8.0:8.99', type='run')
+ # libtiff.so.3 is required
+ depends_on('libtiff@3.0:3.99', type='run')
def install(self, spec, prefix):
mkdirp(prefix.bin)
for files in glob("MotionCor2_*"):
install(files, prefix.bin)
+ with working_dir(prefix.bin):
+ symlink('MotionCor2_{0}'.format(spec.version), 'MotionCor2')