Skip to content
Snippets Groups Projects
package.py 309 B
Newer Older
  • Learn to ignore specific revisions
  • from spack import *
    from spack.pkg.builtin.podio import Podio as BuiltinPodio
    
    class Podio(BuiltinPodio):
        # issue with build breaking for spack as the search-and-replace for "root"
    
        # erroneously selects the all files as the build happens under /tmp/root
    
    Wouter Deconinck's avatar
    Wouter Deconinck committed
        patch('cmake.patch', when="@0.13.1:0.14")