#!/bin/sh prefix=/opt/conda exec_prefix=/opt/conda/bin libdir=/opt/conda/lib usage() { cat <&2 fi case $1 in --libs) echo -L/opt/conda/lib -lpdalcpp ;; --plugin-dir) echo /opt/conda/lib ;; --prefix) echo ${prefix} ;; --ldflags) echo -L${libdir} ;; --defines) echo ;; --includes) echo -I/opt/conda/include -I/opt/conda/include -I/opt/conda/include/libxml2 ;; --cflags) echo -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /opt/conda/include -fdebug-prefix-map=/home/conda/feedstock_root/build_artifacts/pdal_1676228152544/work=/usr/local/src/conda/pdal-2.5.1 -fdebug-prefix-map=/opt/conda=/usr/local/src/conda-prefix ;; --cxxflags) echo -fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /opt/conda/include -fdebug-prefix-map=/home/conda/feedstock_root/build_artifacts/pdal_1676228152544/work=/usr/local/src/conda/pdal-2.5.1 -fdebug-prefix-map=/opt/conda=/usr/local/src/conda-prefix -std=c++11 ;; --version) echo 2.5.1 ;; *) usage 1 1>&2 ;; esac