#!/bin/bash

MAKEDEPS=(make)
DEPS=(openssl openssh libgcrypt zlib)

PKG_VER=1.10.0
SOURCE=https://www.libssh2.org/download/libssh2-$PKG_VER.tar.gz
DESC="A client-side C library implementing the SSH2 protocol"

prepare () {
    ./configure --prefix=/usr --disable-static
}

build () {
    make
}

package () {
    make DESTDIR=$PKG_DEST install
}