Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EveryBeam #23

Merged
merged 1 commit into from
Apr 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build_base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ env:

# WSClean
IDG_VERSION: 1.2.0
EVERYBEAM_VERSION: 0.5.7

# additional karabo dependencies
AOTOOLS_VERSION: 1.0.6
Expand Down
5 changes: 5 additions & 0 deletions everybeam/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=$PREFIX ..
make install
11 changes: 11 additions & 0 deletions everybeam/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
python:
- 3.9

boost:
- 1.74
- 1.78
- 1.82
- 1.84

pin_run_as_build:
boost: x.x
63 changes: 63 additions & 0 deletions everybeam/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
package:
name: {{ PACKAGE_NAME|lower }}
version: {{ EVERYBEAM_VERSION_ALT }}

source:
git_url: https://git.astron.nl/RD/EveryBeam.git
git_tag: "v{{ EVERYBEAM_VERSION }}"

build:
number: {{ build }}
string: py{{ py }}h{{ PKG_HASH }}_{{ build }}

requirements:
build:
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- cmake
- make
- boost
- hdf5
- fftw
- libblas
- liblapack
- libxml2
- python
- casacore
- cfitsio
- wcslib

host:
- boost
- hdf5
- fftw
- libblas
- liblapack
- libxml2
- python
- casacore
- cfitsio
- wcslib

run:
- boost
- hdf5
- fftw
- libblas
- liblapack
- libxml2
- python
- casacore
- cfitsio
- wcslib

about:
home: https://everybeam.readthedocs.io
license: GPLv3
summary: 'The EveryBeam library is a library that provides the antenna response pattern for several instruments, such as LOFAR (and LOBES), SKA (OSKAR), MWA, JVLA, etc.'
doc_url: https://everybeam.readthedocs.io
dev_url: https://git.astron.nl/RD/EveryBeam

extra:
recipe-maintainers:
- [email protected]
Loading