Files
ports/main/libssh2/spkgbuild
2023-12-28 07:16:14 +00:00

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
}