Skip to content

Commit 41aa720

Browse files
vheweswkliao
authored andcommitted
add conda metadata file and build script
1 parent f735400 commit 41aa720

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

build.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
autoreconf -i
2+
./configure --prefix=$PREFIX \
3+
--with-mpi=$BUILD_PREFIX \
4+
--with-hdf5=$BUILD_PREFIX \
5+
CFLAGS="-O2 -DNDEBUG" \
6+
CXXFLAGS="-O2 -DNDEBUG" \
7+
LIBS="-ldl -lz"
8+
make install

meta.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{% set name = "ph5concat" %}
2+
{% set version = "1.1.0" %}
3+
4+
package:
5+
name: {{ name|lower }}
6+
version: {{ version }}
7+
8+
source:
9+
url: https://github.com/NU-CUCIS/ph5concat/archive/refs/tags/v1.1.0.tar.gz
10+
11+
requirements:
12+
build:
13+
- {{ compiler('cxx') }}
14+
- hdf5=*=*mpich*
15+
- zlib
16+
17+
run:
18+
- hdf5=*=*mpich*
19+
- zlib
20+
21+
about:
22+
home: https://github.com/NU-CUCIS/ph5concat

0 commit comments

Comments
 (0)