New package: qbox (#4711)

* New package: qbox

* API changes

* Use install instead of shutil for comd

* Use any BLAS library

* Fix typo

* Python2 fix

* python2 + fix backslashes

* Modified to respond to ld_flags correctly

* Modified to use ld_flags

* Add ld_flags support
This commit is contained in:
EmreAtes
2017-08-10 18:12:08 -07:00
committed by Adam J. Stewart
parent e3a4631037
commit 038efc623d
3 changed files with 100 additions and 3 deletions

View File

@@ -70,6 +70,11 @@ class Fftw(AutotoolsPackage):
depends_on('autoconf', type='build', when='+pfft_patches')
depends_on('libtool', type='build', when='+pfft_patches')
@property
def libs(self):
result = find_libraries(['libfftw3'], root=self.prefix, recurse=True)
return result
def autoreconf(self, spec, prefix):
if '+pfft_patches' in spec:
autoreconf = which('autoreconf')