diff options
author | Joe Hunkeler <jhunk@stsci.edu> | 2016-03-23 17:00:53 -0400 |
---|---|---|
committer | Joe Hunkeler <jhunk@stsci.edu> | 2016-03-23 17:00:53 -0400 |
commit | e4caf4a2acbb18875b1064246554e4105449b5a3 (patch) | |
tree | b57ece5acd84c9a8c9235818b975a439c8ae3df9 /lapack | |
download | astroconda-contrib-e4caf4a2acbb18875b1064246554e4105449b5a3.tar.gz |
Initial commit
Diffstat (limited to 'lapack')
-rw-r--r-- | lapack/bld.bat | 7 | ||||
-rw-r--r-- | lapack/build.sh | 13 | ||||
-rw-r--r-- | lapack/meta.yaml | 16 |
3 files changed, 36 insertions, 0 deletions
diff --git a/lapack/bld.bat b/lapack/bld.bat new file mode 100644 index 0000000..92a9d5a --- /dev/null +++ b/lapack/bld.bat @@ -0,0 +1,7 @@ + + +mkdir BUILD_DIR +cd BUILD_DIR +cmake -DCMAKE_INSTALL_PREFIX=%PREFIX% +make +make install
\ No newline at end of file diff --git a/lapack/build.sh b/lapack/build.sh new file mode 100644 index 0000000..ffedbfe --- /dev/null +++ b/lapack/build.sh @@ -0,0 +1,13 @@ + + +mkdir BUILD_DIR +cd BUILD_DIR +cmake \ +-DCMAKE_INSTALL_PREFIX=$PREFIX \ +-DBUILD_TESTING=OFF \ +-DBUILD_SHARED_LIBS=ON \ +-DLAPACKE=ON \ +.. + +make -j${CPU_COUNT} +make install
\ No newline at end of file diff --git a/lapack/meta.yaml b/lapack/meta.yaml new file mode 100644 index 0000000..474460a --- /dev/null +++ b/lapack/meta.yaml @@ -0,0 +1,16 @@ +about: + home: http://www.netlib.org + license: BSD + summary: lapack +build: + number: '0' +package: + name: lapack + version: 3.6.0 +requirements: + build: + - cmake +source: + fn: lapack-3.6.0.tgz + url: + - http://www.netlib.org/lapack/lapack-3.6.0.tgz |