32 lines
709 B
TOML
32 lines
709 B
TOML
[build]
|
|
type = "autotools"
|
|
|
|
[build.flags]
|
|
configure = [ "--disable-docker-tests", "--with-crypto=openssl" ]
|
|
build_32 = true
|
|
configure-lib32 = [ "--disable-docker-tests", "--with-crypto=openssl" ]
|
|
|
|
[dependencies]
|
|
runtime = [
|
|
"openssl",
|
|
"zlib-ng",
|
|
]
|
|
|
|
[dependencies.lib32]
|
|
runtime = [
|
|
"lib32-openssl",
|
|
"lib32-zlib-ng",
|
|
]
|
|
|
|
[package]
|
|
description = "library implementing the SSH2 protocol as defined by Internet Drafts"
|
|
homepage = "https://www.libssh2.org/"
|
|
license = "BSD-3-Clause"
|
|
name = "libssh2"
|
|
version = "1.11.1"
|
|
|
|
[[source]]
|
|
extract_dir = "$name-$version"
|
|
sha256 = "9954cb54c4f548198a7cbebad248bdc87dd64bd26185708a294b2b50771e3769"
|
|
url = "https://libssh2.org/download/libssh2-$version.tar.xz"
|