mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-04 16:21:38 +01:00
54 lines
1.7 KiB
Plaintext
54 lines
1.7 KiB
Plaintext
# Maintainer: Jeff Bilyk <jbilyk@alpinelinux.org>
|
|
pkgname=putty
|
|
pkgver=0.67
|
|
pkgrel=0
|
|
pkgdesc="SSH and telnet client"
|
|
url="http://www.chiark.greenend.org.uk/~sgtatham/putty/"
|
|
arch="all"
|
|
license="custom"
|
|
depends=
|
|
depends_dev=
|
|
makedepends="$depends_dev"
|
|
install=""
|
|
subpackages="$pkgname-doc"
|
|
source="http://the.earth.li/~sgtatham/putty/latest/putty-$pkgver.tar.gz
|
|
fix-big-int-type.patch
|
|
fix-include.patch
|
|
"
|
|
|
|
_builddir="$srcdir"/putty-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
|
|
md5sums="8d5d450e8f9a011e2e411e3f30827e9b putty-0.67.tar.gz
|
|
a9a76a4b889eaa3c25bce60c2c3d1211 fix-big-int-type.patch
|
|
c376fb348650e28b88cbf06c07cd35d4 fix-include.patch"
|
|
sha256sums="80192458e8a46229de512afeca5c757dd8fce09606b3c992fbaeeee29b994a47 putty-0.67.tar.gz
|
|
77cf14b0c1b793c79c3f80a6e11b57ca281a155a3b01c96ec052ec1cd37d849b fix-big-int-type.patch
|
|
c10f453b2b8f4df670e192234ab14aa81d28f5b917a38c75d8936e351478c738 fix-include.patch"
|
|
sha512sums="c2b17da46b8db3fe3837a10cb9cf5dd4b3ef6bfa15cadab83f3b87cf1479ed31fced90b774297ae53bdcbbdf230fc80d5c73d5ff3be6916fb591fd7ce3d35eca putty-0.67.tar.gz
|
|
7dae793a7f9c5248f10ebf456087c01459c99bc8ab931b06a9aa09d70ef010a06bf7b248c38b03ddd0b76d1a35d3b32a095ac99a22d08aa170ce0d100f5dffb7 fix-big-int-type.patch
|
|
1ac1d9c803e0bc180b4c9a2dde357d06b0af37d182e8037fccc5c42f03f5e796fca0a1a2e6fa2db5ae27fbbdfb2579938a70ccf5028fee20c828a853607f330b fix-include.patch"
|