Skip to content

Commit

Permalink
recipes: Add conda-build.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham committed Jul 17, 2016
1 parent 41ddb87 commit 487b785
Showing 1 changed file with 82 additions and 0 deletions.
82 changes: 82 additions & 0 deletions recipes/conda-build/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
{% set version = "1.21.5" %}

package:
name: conda-build
version: {{ version }}

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

build:
number: 0
script: python setup.py install
entry_points:
- conda-build = conda_build.cli.main_build:main
- conda-convert = conda_build.cli.main_convert:main
- conda-develop = conda_build.cli.main_develop:main
- conda-index = conda_build.cli.main_index:main
- conda-inspect = conda_build.cli.main_index:main
- conda-metapackage = conda_build.cli.main_metapackage:main
- conda-pipbuild = conda_build.cli.main_pipbuild:main
- conda-render = conda_build.cli.main_render:main
- conda-sign = conda_build.cli.main_sign:main
- conda-skeleton = conda_build.cli.main_skeleton:main

requirements:
build:
- python

run:
- python
- conda >=4.1
- jinja2
- psutil
- patchelf # [linux]

test:
imports:
- conda_build

commands:
- which conda-build # [unix]
- where conda-build # [win]
- conda build -h
- which conda-convert # [unix]
- where conda-convert # [win]
- conda convert -h
- which conda-develop # [unix]
- where conda-develop # [win]
- conda develop -h
- which conda-index # [unix]
- where conda-index # [win]
- conda index -h
- which conda-inspect # [unix]
- where conda-inspect # [win]
- conda inspect -h
- which conda-metapackage # [unix]
- where conda-metapackage # [win]
- conda metapackage -h
- which conda-pipbuild # [unix]
- where conda-pipbuild # [win]
- conda pipbuild -h
- which conda-render # [unix]
- where conda-render # [win]
- conda render -h
- which conda-sign # [unix]
- where conda-sign # [win]
- conda sign -h
- which conda-skeleton # [unix]
- where conda-skeleton # [win]
- conda skeleton -h

about:
home: https://github.com/conda/conda-build
summary: tools for building conda packages
license: BSD 3-Clause

extra:
recipe-maintainers:
- jakirkham
- msarahan

0 comments on commit 487b785

Please sign in to comment.