-
Notifications
You must be signed in to change notification settings - Fork 1
/
meta.yaml
49 lines (42 loc) · 1.11 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
###############################################################################
#
# conda-build recipe for the package
#
# AUTHOR: Maciek_Bak
# AFFILIATION: Department_of_Mathematics_City_University_of_London
# CONTACT: wsciekly.maciek@gmail.com
# CREATED: 01-08-2023
# LICENSE: Apache 2.0
#
###############################################################################
---
{% set version = "0.0.0" %} # for local build only
package:
name: hypercomplex
version: {{ version }}
source:
path: .
build:
noarch: generic
script: |
mkdir -p $PREFIX/include
cp -r $SRC_DIR/hypercomplex $PREFIX/include/Hypercomplex
requirements:
# Hypercomplex is a library
# we do not build it thus no 'build' and 'host' sections,
# only 'run', which will be compilation of users program
run:
- compilers
- mpfr
- sysroot_linux-64=2.28
about:
home: https://github.com/AngryMaciek/hypercomplex
summary: |
Header-only C++ template library for lattice-based
cryptosystems in high-dimensional algebras
license: Apache-2.0
license_file: LICENSE
extra:
maintainers:
- Maciek Bak
...