Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add conda build #1168

Merged
merged 3 commits into from
Aug 1, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.8" %}

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: 3cbd3110672962b3651d4635944868b08501c087e24672cc933b80117e332e7f

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

requirements:
build:
- python

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

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