# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $ # Maintainer: damir # Contributor: Andreas Schweitzer # with ideas by Michael Baehr pkgname=putty pkgver=0.60 pkgrel=1 pkgdesc="A terminal integrated SSH/Telnet client known from Windows." arch=('i686' 'x86_64') url="http://www.chiark.greenend.org.uk/~sgtatham/putty/" license=('custom') depends=('gtk') #source=(ftp://ftp.chiark.greenend.org.uk/users/sgtatham/putty-latest/$pkgname-$pkgver.tar.gz) source=("http://the.earth.li/~sgtatham/putty/latest/putty-$pkgver.tar.gz") md5sums=('07e65fd98b16d115ae38a180bfb242e2') build() { cd $startdir/src/$pkgname-$pkgver/unix ./configure --prefix=/usr make || return 1 mkdir -p $startdir/pkg/usr/{bin,share/man/man1} make DESTDIR=$startdir/pkg install install -D -m644 ../LICENCE $startdir/pkg/usr/share/licenses/$pkgname/LICENSE }