我已经写了一个conda配方,我希望有两个版本:一个有功能,一个没有。
对于标准功能(nomkl,debug,opt),您可以在调用conda build之前设置相关的环境变量(例如FEATURE_NOMKL=1
),它会自动调整配方并使用nomkl功能生成构建。
http://conda.pydata.org/docs/building/meta-yaml.html#id1 http://conda.pydata.org/docs/building/environment-vars.html#environment-variables-to-set-build-features
如何为自定义功能(我自己创建的功能)执行此操作。有没有办法创建等效的FEATURE_MYCOOLFEATURE=1
?或者在食谱中有一些与Jinja2有关的方法吗?