29 lines
529 B
TOML
29 lines
529 B
TOML
[build]
|
|
type = "autotools"
|
|
|
|
[build.flags]
|
|
configure = [
|
|
"--disable-static",
|
|
"--enable-shared",
|
|
"--disable-native",
|
|
"--enable-fat",
|
|
]
|
|
|
|
[dependencies]
|
|
runtime = [
|
|
"glibc",
|
|
"libunwind",
|
|
]
|
|
|
|
[package]
|
|
description = "C library providing BLAKE2b, BLAKE2s, BLAKE2bp, BLAKE2sp hash functions"
|
|
homepage = "https://blake2.net/"
|
|
license = "CC0-1.0"
|
|
name = "libb2"
|
|
version = "0.98.1"
|
|
|
|
[[source]]
|
|
extract_dir = "$name-$version"
|
|
url = "https://github.com/BLAKE2/libb2.git#v$version"
|
|
post_extract = [ "autoreconf -fiv" ]
|