mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-22 07:44:36 +00:00
15 lines
310 B
Plaintext
15 lines
310 B
Plaintext
# description : Client-side C library implementing the SSH2 protocol
|
|
# depends : libgcrypt openssh
|
|
|
|
name=libssh2
|
|
version=1.9.0
|
|
release=1
|
|
source="https://www.libssh2.org/download/$name-$version.tar.gz"
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|