diff --git a/recipes/tttrlib/build.sh b/recipes/tttrlib/build.sh index b4013e98b4ad8..b5970e094f4eb 100755 --- a/recipes/tttrlib/build.sh +++ b/recipes/tttrlib/build.sh @@ -4,7 +4,7 @@ mkdir b2 && cd b2 if [[ "${target_platform}" == osx-* ]]; then # See https://conda-forge.org/docs/maintainer/knowledge_base.html#newer-c-features-with-old-sdk - CXXFLAGS="${CXXFLAGS} -D_LIBCPP_DISABLE_AVAILABILITY" + export CXXFLAGS="${CXXFLAGS} -D_LIBCPP_DISABLE_AVAILABILITY" export CONFIG_ARGS="-DCMAKE_FIND_FRAMEWORK=NEVER -DCMAKE_FIND_APPBUNDLE=NEVER" else export CONFIG_ARGS="" @@ -18,6 +18,9 @@ cmake -S .. -B . \ -DBUILD_LIBRARY=ON \ -DPYTHON_VERSION=$(python -c 'import platform; print(platform.python_version())') \ -DPython_ROOT_DIR="${PREFIX}/bin" \ + -DBUILD_PYTHON_DOCS=ON \ + -DBoost_USE_STATIC_LIBS=OFF \ + -DWITH_AVX=OFF \ -G Ninja \ "${CONFIG_ARGS}" diff --git a/recipes/tttrlib/meta.yaml b/recipes/tttrlib/meta.yaml index d9b4c5bcb9146..daf00affe224d 100644 --- a/recipes/tttrlib/meta.yaml +++ b/recipes/tttrlib/meta.yaml @@ -1,5 +1,5 @@ {% set name = "tttrlib" %} -{% set version = "0.25.0" %} +{% set version = "0.25.1" %} package: name: {{ name }} @@ -7,11 +7,10 @@ package: source: url: https://github.com/Fluorescence-Tools/tttrlib/archive/refs/tags/v{{ version }}.tar.gz - sha256: e15604ef063257cd87d3bdf266c1d5a448189508f51cdc4156a93cb2b46fe807 + sha256: a224214e50d7a202ef1d264c64641ab0b26f29bf756a96659489847953b698a6 build: number: 0 - skip: True # [osx and py > 310] run_exports: '{{ pin_subpackage("tttrlib", max_pin="x.x") }}' requirements: @@ -68,3 +67,6 @@ extra: recipe-maintainers: - tpeulen - khemmen + additional-platforms: + - linux-aarch64 + - osx-arm64