mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-19 10:30:02 +02:00
* forward declare zmq_msg_t and moved include * removed zmq as dependency for slsdet (#870) * Fixed path when building as submodule * new moench data structure for offline processing * meonch raw data and zmq process files updated to 7.0.3 version * implemented config file for Zmq file * raw data and zmq work with config file, but only with one file/interface * zmq config change * added config examples for zmq and rawdata * update release notes, release versions --------- Co-authored-by: Erik Frojdh <erik.frojdh@gmail.com> Co-authored-by: froejdh_e <erik.frojdh@psi.ch> Co-authored-by: Anna Bergamaschi <anna.bergamaschi@psi.ch> Co-authored-by: anberga <34126852+anberga@users.noreply.github.com>
127 lines
2.3 KiB
YAML
Executable File
127 lines
2.3 KiB
YAML
Executable File
|
|
package:
|
|
name: sls_detector_software
|
|
version: {{ environ.get('GIT_DESCRIBE_TAG', '') }}
|
|
|
|
source:
|
|
- path: ..
|
|
|
|
build:
|
|
number: 0
|
|
binary_relocation: True
|
|
rpaths:
|
|
- lib/
|
|
|
|
requirements:
|
|
build:
|
|
- {{ compiler('c') }}
|
|
- {{compiler('cxx')}}
|
|
- cmake
|
|
- qt 5.*
|
|
- xorg-libx11
|
|
- xorg-libice
|
|
- xorg-libxext
|
|
- xorg-libsm
|
|
- xorg-libxau
|
|
- xorg-libxrender
|
|
- xorg-libxfixes
|
|
- {{ cdt('mesa-libgl-devel') }} # [linux]
|
|
- {{ cdt('mesa-libegl-devel') }} # [linux]
|
|
- {{ cdt('mesa-dri-drivers') }} # [linux]
|
|
- {{ cdt('libselinux') }} # [linux]
|
|
- {{ cdt('libxdamage') }} # [linux]
|
|
- {{ cdt('libxxf86vm') }} # [linux]
|
|
- expat
|
|
|
|
host:
|
|
- libstdcxx-ng
|
|
- libgcc-ng
|
|
- xorg-libx11
|
|
- xorg-libice
|
|
- xorg-libxext
|
|
- xorg-libsm
|
|
- xorg-libxau
|
|
- xorg-libxrender
|
|
- xorg-libxfixes
|
|
- expat
|
|
|
|
run:
|
|
- libstdcxx-ng
|
|
- libgcc-ng
|
|
|
|
|
|
outputs:
|
|
- name: slsdetlib
|
|
script: copy_lib.sh
|
|
|
|
requirements:
|
|
build:
|
|
- {{ compiler('c') }}
|
|
- {{compiler('cxx')}}
|
|
- libstdcxx-ng
|
|
- libgcc-ng
|
|
|
|
|
|
run:
|
|
- libstdcxx-ng
|
|
- libgcc-ng
|
|
|
|
- name: slsdet
|
|
|
|
script: build_pylib.sh
|
|
|
|
requirements:
|
|
build:
|
|
- python
|
|
- {{ compiler('c') }}
|
|
- {{compiler('cxx')}}
|
|
- {{ pin_subpackage('slsdetlib', exact=True) }}
|
|
- setuptools
|
|
- pybind11=2.11
|
|
|
|
host:
|
|
- python
|
|
- {{ pin_subpackage('slsdetlib', exact=True) }}
|
|
- pybind11=2.11
|
|
|
|
|
|
run:
|
|
- libstdcxx-ng
|
|
- libgcc-ng
|
|
- python
|
|
- numpy
|
|
- {{ pin_subpackage('slsdetlib', exact=True) }}
|
|
|
|
|
|
test:
|
|
imports:
|
|
- slsdet
|
|
|
|
- name: slsdetgui
|
|
script: copy_gui.sh
|
|
requirements:
|
|
|
|
build:
|
|
- {{ compiler('c') }}
|
|
- {{compiler('cxx')}}
|
|
- {{ pin_subpackage('slsdetlib', exact=True) }}
|
|
|
|
run:
|
|
- {{ pin_subpackage('slsdetlib', exact=True) }}
|
|
- qt 5.*
|
|
- expat
|
|
|
|
- name: moenchzmq
|
|
script: copy_moench.sh
|
|
requirements:
|
|
|
|
build:
|
|
- {{ compiler('c') }}
|
|
- {{compiler('cxx')}}
|
|
- {{ pin_subpackage('slsdetlib', exact=True) }}
|
|
|
|
|
|
run:
|
|
- {{ pin_subpackage('slsdetlib', exact=True) }}
|
|
- expat
|