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 cdfe2af commit 2b8ea40
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions recipes/conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{% set version = "4.0.6" %}

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

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

build:
number: 0
script: CONDA_DEFAULT_ENV='' python setup.py install

requirements:
build:
- python
- conda-env
- pycosat
- pyyaml
- requests

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

test:
imports:
- conda_env

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 2b8ea40

Please sign in to comment.