mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-19 15:41:51 +01:00
39 lines
1.0 KiB
Plaintext
39 lines
1.0 KiB
Plaintext
# Maintainer: Jeff Bilyk <jbilyk@alpinelinux.org>
|
|
pkgname=putty
|
|
pkgver=0.71
|
|
pkgrel=1
|
|
pkgdesc="SSH and telnet client"
|
|
url="https://www.chiark.greenend.org.uk/~sgtatham/putty/"
|
|
arch="all"
|
|
license="MIT"
|
|
makedepends="linux-headers"
|
|
subpackages="$pkgname-doc"
|
|
source="http://the.earth.li/~sgtatham/putty/$pkgver/putty-$pkgver.tar.gz
|
|
fix-ppc64le-disable-werror.patch"
|
|
options="!check" # no test suite
|
|
builddir="$srcdir"/putty-$pkgver
|
|
|
|
# secfixes:
|
|
# 0.71-r0:
|
|
# - CVE-2019-9894
|
|
# - CVE-2019-9895
|
|
# - CVE-2019-9897
|
|
# - CVE-2019-9898
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="f8791210bd5925b26d51b13f0558eea15dbac40808051165b236d6436226f5c2b0aa7d69288ed9e2bddc1066455678cfd0af73ef6b715a136c42f3b6f754ac07 putty-0.71.tar.gz
|
|
b10b2332ca0592db5664311d1bba7549ded79f16f6eef13dab3caca21626d97657f31e8603766e00b1a06f42cf229107eb53929730fe48e97cfc9216093fcc4c fix-ppc64le-disable-werror.patch"
|