From 08ec92277ea7157793abc6cfac17423a5ee19c06 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Mon, 2 Nov 2015 00:03:10 +0800 Subject: [PATCH] add conda build scripts --- conda/misoc/bld.bat | 1 + conda/misoc/meta.yaml | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 conda/misoc/bld.bat create mode 100644 conda/misoc/meta.yaml diff --git a/conda/misoc/bld.bat b/conda/misoc/bld.bat new file mode 100644 index 000000000..39b5e1fee --- /dev/null +++ b/conda/misoc/bld.bat @@ -0,0 +1 @@ +%PYTHON% setup.py install diff --git a/conda/misoc/meta.yaml b/conda/misoc/meta.yaml new file mode 100644 index 000000000..74eff0208 --- /dev/null +++ b/conda/misoc/meta.yaml @@ -0,0 +1,25 @@ +package: + name: misoc + version: {{ environ.get("GIT_DESCRIBE_TAG", "") }}.{{ environ.get("GIT_DESCRIBE_HASH") }} + +source: + git_url: https://github.com/m-labs/misoc + git_tag: new + +build: + noarch_python: true + string: py_{{ environ.get("GIT_DESCRIBE_NUMBER", 0) }} + script: $PYTHON setup.py install + +requirements: + build: + - migen + - python + run: + - migen + - python + +about: + home: http://m-labs.hk/gateware.html + license: 3-clause BSD + summary: 'A high performance and small footprint SoC based on Migen'