mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
40 lines
951 B
Plaintext
40 lines
951 B
Plaintext
# Contributor: William Pitcock <nenolod@dereferenced.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libssh2
|
|
pkgver=1.8.0
|
|
pkgrel=3
|
|
pkgdesc="library for accessing ssh1/ssh2 protocol servers"
|
|
url="https://libssh2.org/"
|
|
arch="all"
|
|
license="BSD"
|
|
makedepends="libressl-dev zlib-dev"
|
|
options="!check"
|
|
subpackages="$pkgname-dbg $pkgname-dev $pkgname-doc"
|
|
source="http://www.libssh2.org/download/libssh2-$pkgver.tar.gz"
|
|
builddir="$srcdir"/libssh2-$pkgver
|
|
|
|
prepare() {
|
|
cd "$builddir"
|
|
update_config_sub
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--localstatedir=/var
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="289aa45c4f99653bebf5f99565fe9c519abc204feb2084b47b7cc3badc8bf4ecdedd49ea6acdce8eb902b3c00995d5f92a3ca77b2508b92f04ae0e7de7287558 libssh2-1.8.0.tar.gz"
|