From 415856bdd4f48ab4f2732996f0bae58595092bbe Mon Sep 17 00:00:00 2001 From: Parabola Date: Tue, 5 Apr 2011 14:26:38 +0000 Subject: Tue Apr 5 14:26:38 UTC 2011 --- extra/putty/PKGBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 extra/putty/PKGBUILD (limited to 'extra/putty/PKGBUILD') diff --git a/extra/putty/PKGBUILD b/extra/putty/PKGBUILD new file mode 100644 index 000000000..6252fc40c --- /dev/null +++ b/extra/putty/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 57024 2009-10-31 09:56:01Z allan $ +# Maintainer: damir +# Contributor: Andreas Schweitzer +# with ideas by Michael Baehr + +pkgname=putty +pkgver=0.60 +pkgrel=2 +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() { + export CFLAGS="$CFLAGS -fno-strict-aliasing" + cd $srcdir/$pkgname-$pkgver/unix + ./configure --prefix=/usr + make || return 1 + install -dm755 $pkgdir/usr/{bin,share/man/man1} + make DESTDIR=$pkgdir install + install -D -m644 ../LICENCE $pkgdir/usr/share/licenses/$pkgname/LICENSE +} -- cgit v1.2.3-54-g00ecf