Switch to using *std_cmake_args
This commit is contained in:
@@ -36,7 +36,6 @@ class BppCore(Package):
|
|||||||
depends_on('cmake')
|
depends_on('cmake')
|
||||||
|
|
||||||
def install(self, spec, prefix):
|
def install(self, spec, prefix):
|
||||||
cmake('-DCMAKE_INSTALL_PREFIX=%s' % prefix,
|
cmake('-DBUILD_TESTING=FALSE', '.', *std_cmake_args)
|
||||||
'-DBUILD_TESTING=FALSE', '.')
|
|
||||||
make()
|
make()
|
||||||
make('install')
|
make('install')
|
||||||
|
@@ -38,7 +38,6 @@ class BppPhyl(Package):
|
|||||||
depends_on('bpp-seq')
|
depends_on('bpp-seq')
|
||||||
|
|
||||||
def install(self, spec, prefix):
|
def install(self, spec, prefix):
|
||||||
cmake('-DCMAKE_INSTALL_PREFIX=%s' % prefix,
|
cmake('-DBUILD_TESTING=FALSE', '.', *std_cmake_args)
|
||||||
'-DBUILD_TESTING=FALSE', '.')
|
|
||||||
make()
|
make()
|
||||||
make('install')
|
make('install')
|
||||||
|
@@ -37,7 +37,6 @@ class BppSeq(Package):
|
|||||||
depends_on('bpp-core')
|
depends_on('bpp-core')
|
||||||
|
|
||||||
def install(self, spec, prefix):
|
def install(self, spec, prefix):
|
||||||
cmake('-DCMAKE_INSTALL_PREFIX=%s' % prefix,
|
cmake('-DBUILD_TESTING=FALSE', '.', *std_cmake_args)
|
||||||
'-DBUILD_TESTING=FALSE', '.')
|
|
||||||
make()
|
make()
|
||||||
make('install')
|
make('install')
|
||||||
|
@@ -42,6 +42,6 @@ class BppSuite(Package):
|
|||||||
depends_on('bpp-phyl')
|
depends_on('bpp-phyl')
|
||||||
|
|
||||||
def install(self, spec, prefix):
|
def install(self, spec, prefix):
|
||||||
cmake('-DCMAKE_INSTALL_PREFIX=%s' % prefix, '.')
|
cmake('.', *std_cmake_args)
|
||||||
make()
|
make()
|
||||||
make('install')
|
make('install')
|
||||||
|
Reference in New Issue
Block a user