From b48c23a48cf49a32008edd2cdb2d54274637078f Mon Sep 17 00:00:00 2001 From: Akhilender Bongirwar Date: Sat, 21 Dec 2024 19:31:18 +0530 Subject: [PATCH] fix: try with conda --- recipes/renode/recipe.yaml | 30 ++++++++---------------------- 1 file changed, 8 insertions(+), 22 deletions(-) diff --git a/recipes/renode/recipe.yaml b/recipes/renode/recipe.yaml index 3d96dae..958e237 100644 --- a/recipes/renode/recipe.yaml +++ b/recipes/renode/recipe.yaml @@ -11,21 +11,13 @@ source: build: script: | - git clone https://github.com/renode/renode.git - cd renode - git checkout v${{ version }} - ./build.sh -p + conda install -c antmicro renode mkdir -p $PREFIX/bin - cp output/bin/Release/Renode $PREFIX/bin/renode + cp $(conda info --base)/envs/$(conda info --envs | grep '*' | awk '{print $1}')/bin/renode $PREFIX/bin/renode requirements: build: - - ${{ compiler('cxx') }} - - mono - - make - - coreutils - - python - - pip + - conda - if: linux then: - libudev @@ -34,18 +26,12 @@ requirements: then: - gtk3 - libclang - host: - - mono - - dotnet - - python - - if: linux + - if: win then: - - libudev - - libclang - - if: osx - then: - - gtk3 - - libclang + - mono + - dotnet + host: + - conda run: - mono - python