-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
meta.yaml
52 lines (45 loc) · 1.37 KB
/
meta.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{% set version = "1.21.6" %}
package:
name: blosc
version: {{ version }}
source:
url: https://github.com/Blosc/c-blosc/archive/v{{ version }}.tar.gz
sha256: 9fcd60301aae28f97f1301b735f966cc19e7c49b6b4321b839b4579a0c156f38
build:
number: 0
run_exports:
- {{ pin_subpackage('blosc') }}
requirements:
build:
- cmake
- make # [unix]
- {{ compiler('c') }}
- {{ stdlib("c") }}
- {{ compiler('cxx') }}
host:
- lz4-c
- snappy
- zlib
- zstd
test:
commands:
- test -e $PREFIX/include/blosc.h # [unix]
- test -e $PREFIX/include/blosc-export.h # [unix]
- test ! -e $PREFIX/lib/libblosc.a # [unix]
- test -e $PREFIX/lib/libblosc${SHLIB_EXT} # [unix]
- if not exist %LIBRARY_INC%\\blosc.h exit 1 # [win]
- if not exist %LIBRARY_INC%\\blosc-export.h exit 1 # [win]
- if not exist %LIBRARY_BIN%\\blosc.dll exit 1 # [win]
- if not exist %LIBRARY_LIB%\\blosc.lib exit 1 # [win]
- if exist %LIBRARY_LIB%\\libblosc.lib exit 1 # [win]
about:
home: https://github.com/Blosc/c-blosc
license: BSD-3-Clause
license_file: LICENSE.txt
summary: A blocking, shuffling and loss-less compression library that can be faster than `memcpy()`
extra:
recipe-maintainers:
- FrancescElies
- jakirkham
- hmaarrfk
- zklaus