-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathmeta.yaml
49 lines (41 loc) · 1.04 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
{% set name = "spdlog" %}
{% set version = "1.15.0" %}
{% set sha256 = "9962648c9b4f1a7bbc76fd8d9172555bad1871fdb14ff4f842ef87949682caa5" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/gabime/{{ name|lower }}/archive/v{{ version }}.tar.gz
sha256: {{ sha256 }}
patches:
- patches/fix.patch
build:
number: 0
run_exports:
- {{ pin_subpackage('spdlog', max_pin='x.x') }}
requirements:
build:
- cmake
- {{ compiler('cxx') }}
- {{ stdlib("c") }}
- make # [unix]
host:
- fmt
test:
commands:
- test -e $PREFIX/include/spdlog/spdlog.h # [not win]
- if not exist %PREFIX%\Library\include\spdlog\spdlog.h exit 1 # [win]
about:
home: https://github.com/gabime/spdlog
license: MIT
license_family: MIT
license_file: LICENSE
summary: Super fast C++ logging library.
description: |
spdlog is a header only library for Super fast C++ logging
to be used with a C++11 compiler.
extra:
recipe-maintainers:
- druvus
- rongou
- bluescarni