mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
25 lines
879 B
Bash
25 lines
879 B
Bash
# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
|
|
# Maintainer: damir <damir@archlinux.org>
|
|
# Contributor: Andreas Schweitzer <andy@bootblock.de>
|
|
# 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
|
|
}
|