Skip to content

Commit

Permalink
Merge pull request #6809 from sdvillal/lintel
Browse files Browse the repository at this point in the history
Add lintel recipe
  • Loading branch information
marcelotrevisani authored Oct 17, 2018
2 parents a10fa0d + f9fb270 commit 5195799
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions recipes/lintel/meta.yaml
Original file line number Diff line number Diff line change
@@ -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 # [win or 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

0 comments on commit 5195799

Please sign in to comment.