aboutsummaryrefslogtreecommitdiffstats
path: root/main/libssh2/APKBUILD
blob: 2c526249ac1edffc3073a0f7613acdd4b57c8114 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Contributor: William Pitcock <nenolod@dereferenced.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libssh2
pkgver=1.8.2
pkgrel=0
pkgdesc="library for accessing ssh1/ssh2 protocol servers"
url="http://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

# security fixes:
#   1.8.1-r0:
#     -  CVE-2019-3855
#     -  CVE-2019-3856
#     -  CVE-2019-3857
#     -  CVE-2019-3858
#     -  CVE-2019-3859
#     -  CVE-2019-3860
#     -  CVE-2019-3861
#     -  CVE-2019-3862
#     -  CVE-2019-3863

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="390ab4ad93bb738415ec11a6eb92806c9b9e9e5d8ee7c442d841a58b4292c1c447a9bc99e153ba464e2e11f9c0d1913469303598c3046722d1ae821991e8cb93  libssh2-1.8.2.tar.gz"