2021-09-19 22:59:56 +02:00
|
|
|
# Description: A library implementing the SSH2 protocol as defined by Internet Drafts
|
|
|
|
# URL: https://www.libssh2.org/
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
|
|
|
|
name=libssh2
|
|
|
|
version=1.10.0
|
2023-04-29 17:03:17 +02:00
|
|
|
release=2
|
|
|
|
source=(https://www.libssh2.org/download/$name-$version.tar.gz
|
|
|
|
libssh2-1.10.0-upstream_fix-1.patch)
|
2021-09-19 22:59:56 +02:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2023-04-29 17:03:17 +02:00
|
|
|
|
|
|
|
patch -Np1 -i $SRC/libssh2-1.10.0-upstream_fix-1.patch
|
|
|
|
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--disable-static
|
2021-09-19 22:59:56 +02:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|