You are not logged in.
Pages: 1
yes, that's right, the just released Unix (!!!) version of putty is in incoming 8) ...
If you are in a mixed Windows/Unix environment you better know putty ( http://www.chiark.greenend.org.uk/~sgtatham/putty/ ). It is a terminal-ssh client combination and some tools. It also has "pterm" - another xterm clone.
Here is the PKGBUILD :
# Contributor: Andreas Schweitzer <andy@bootblock.de>
pkgname=putty
pkgver=0.54
pkgrel=1
pkgdesc="A terminal integrated SSH/Telnet client known from Windows."
url="http://www.chiark.greenend.org.uk/~sgtatham/putty/"
groups=('')
depends=('gtk')
backup=('')
provides=('')
replaces=('')
install=
source=(ftp://ftp.chiark.greenend.org.uk/users/sgtatham/putty-latest/$pkgname-$pkgver.tar.gz)
md5sums=('ea6de3bc40bb34f4a4a8c861c08e6f31')
export GZIP="-q -f"
build() {
cd $startdir/src/$pkgname-$pkgver/unix
sed -i s+"usr/local"+"usr"+ Makefile.gtk
sed -i s+"^.*pscp.1"+"#"+ Makefile.gtk
sed -i s+"^.*psftp.1"+"#"+ Makefile.gtk
make -f Makefile.gtk || return 1
mkdir -p $startdir/pkg/usr/bin $startdir/pkg/usr/man/man1
make DESTDIR=$startdir/pkg -f Makefile.gtk install
}
Offline
Pages: 1