Skip to content

Commit

Permalink
conda: Add a recipe to build conda.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham committed Jun 30, 2016
1 parent 75e294a commit e78b554
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions recipes/conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{% set version = "4.1.5" %}

package:
name: conda
version: {{ version }}

source:
fn: conda-{{ version }}.tar.gz
url: https://github.com/conda/conda/archive/{{ version }}.tar.gz
sha256: 276a69ddd10eb927568d80b520c5c5501adf9c1aecc1c66b873d30e74d557a32

build:
number: 0
script: CONDA_DEFAULT_ENV='' python setup.py install
entry_points:
- conda = conda.cli:main

requirements:
build:
- python
- conda-env >=2.5
- pycosat
- pyyaml
- requests
- ruamel_yaml

run:
- python
- conda-env
- pycosat
- pyyaml
- requests
- ruamel_yaml

test:
imports:
- conda

commands:
- which conda # [unix]
- where conda # [win]

about:
home: https://github.com/conda/conda
summary: OS-agnostic, system-level binary package manager.
license: BSD 3-Clause

extra:
recipe-maintainers:
- jakirkham
- kalefranz
- mcg1969
- msarahan
- pelson

0 comments on commit e78b554

Please sign in to comment.