mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-19 17:13:32 +00:00
19 lines
376 B
Plaintext
19 lines
376 B
Plaintext
# description : Client-side C library implementing the SSH2 protocol
|
|
# depends : libgcrypt openssh
|
|
|
|
name=libssh2
|
|
version=1.11.0
|
|
release=2
|
|
source="https://www.libssh2.org/download/$name-$version.tar.gz
|
|
CVE-2023-48795.patch"
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
patch -Np1 -i $SRC/CVE-2023-48795.patch
|
|
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|