From b372a0a8a168b674496a96412e266bcbd91395ea Mon Sep 17 00:00:00 2001 From: santi Date: Thu, 11 Oct 2018 09:59:55 +0200 Subject: [PATCH] add lintel recipe --- recipes/lintel/meta.yaml | 50 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 recipes/lintel/meta.yaml diff --git a/recipes/lintel/meta.yaml b/recipes/lintel/meta.yaml new file mode 100644 index 0000000000000..e2c12bfc58df4 --- /dev/null +++ b/recipes/lintel/meta.yaml @@ -0,0 +1,50 @@ +{% set name = "lintel" %} +{% set build_number = "0" %} + +{% set version = "1.0" %} +{% set sha256 = "0ef52abe5ad6eefb54fe74afd2d768d4e6d3eca238e4bd74d6d41ec883d5538f" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + fn: {{ name }}-{{ version }}.tar.gz + url: https://github.com/dukebw/lintel/archive/{{ version }}.tar.gz + sha256: {{ sha256 }} + +build: + number: {{ build_number }} + skip: True # [py2k] + script: + - "export CFLAGS='-std=c99'" + - "{{ PYTHON }} -m pip install . --no-deps --ignore-installed --no-cache-dir -vvv" + +requirements: + build: + - {{ compiler('c') }} + host: + - python + - pip + - ffmpeg + run: + - python + - ffmpeg + - numpy + - matplotlib + - click + +test: + imports: + - lintel + +about: + home: https://github.com/dukebw/lintel + license: Apache2 + license_file: LICENSE + summary: 'A Python module to decode video frames directly, using the FFmpeg C API.' + +extra: + recipe-maintainers: + - sdvillal + - dukebw