pkgname=libssh2 pkgver=1.11.1 pkgrel=1 pkgdesc="A library implementing the SSH2 protocol as defined by Internet Drafts" arch=('x86_64') url="https://www.libssh2.org" license=('BSD') depends=('openssl' 'zlib') source=(https://www.libssh2.org/download/${pkgname}-${pkgver}.tar.gz) sha256sums=(d9ec76cbe34db98eec3539fe2c899d26b0c837cb3eb466a56b0f109cabf658f7) build() { cd ${pkgname}-${pkgver} local configure_args=( --disable-docker-tests --disable-static ${configure_options} ) ./configure ${configure_args[@]} make } package() { cd ${pkgname}-${pkgver} make DESTDIR=${pkgdir} install }