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
|
overlay = "."
whitelist = ["c/**"]
uploaders = ["karthek <mail@karthek.com>"]
collapse_features = true
[source]
build_depends = ["cmake"]
#some features are mutually exclusive.
[packages."lib+@"]
test_is_broken = true
#fails to build on architectures that don't have neon
[packages."lib+neon"]
test_is_broken = true
[packages."extra+libblake3-dev"]
architecture = ["any"]
section = "libdevel"
depends = ["${misc:Depends}", "${shlibs:Depends}", "libblake3-0 (=${binary:Version})"]
summary = "BLAKE3 hash function - C library - development files"
description = """
BLAKE3 is a cryptographic hash function that is much faster than common
alternatives, while at the same time being faster and highly parallelizable.
This package contains the development support files.
"""
[packages."extra+libblake3-0"]
architecture = ["any"]
section = "libs"
depends = ["${misc:Depends}", "${shlibs:Depends}"]
summary = "BLAKE3 hash function - C library - shared library"
description = """
BLAKE3 is a cryptographic hash function that is much faster than common
alternatives, while at the same time being faster and highly parallelizable.
This package contains the shared library.
"""
|