Add conda recipe for Migen
This commit is contained in:
parent
2f45d4640b
commit
7280bdb9d4
|
@ -0,0 +1 @@
|
|||
%PYTHON% setup.py install
|
|
@ -0,0 +1,26 @@
|
|||
package:
|
||||
name: migen
|
||||
version: {{ environ.get("GIT_DESCRIBE_TAG", "") }}
|
||||
|
||||
source:
|
||||
git_url: https://github.com/m-labs/migen
|
||||
git_tag: master
|
||||
|
||||
build:
|
||||
number: {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }}
|
||||
script: $PYTHON setup.py install
|
||||
|
||||
requirements:
|
||||
build:
|
||||
- python
|
||||
run:
|
||||
- python
|
||||
|
||||
test:
|
||||
imports:
|
||||
- migen
|
||||
|
||||
about:
|
||||
home: http://m-labs.hk/gateware.html
|
||||
license: 3-clause BSD
|
||||
summary: 'A Python toolbox for building complex digital hardware'
|
Loading…
Reference in New Issue