-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphast.config.yaml
More file actions
35 lines (31 loc) · 917 Bytes
/
phast.config.yaml
File metadata and controls
35 lines (31 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
main-package: phast
entrypoint: bin/phast
packages:
- name: boost
version: 1.89.0
src:
type: git
url: https://github.com/boostorg/boost.git
ref: 1bed2b0712b2119f20d66c5053def9173c8462a5
build: |
git submodule update --init --recursive
export BOOST_ROOT="$out"
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="$out"
make install
- name: phast
version: 3.8.6
depends: [ boost ]
src:
type: git
url: https://github.com/equinor/phast_usgs
ref: a37cd5f224302fa88a1c903f73d4490b5f4a235c
build: |
autoreconf -fi
./configure \
--with-boost="$boost" \
CPPFLAGS="-I/usr/include/hdf5/serial" \
LDFLAGS="-L/usr/lib/aarch64-linux-gnu/hdf5/serial"
make all
make check
make install