blob: 547e7980f72c249ffb451fc59b20ddfb200836aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $Id: PKGBUILD 15297 2010-04-09 16:08:30Z jlichtblau $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: gothmog.todi <t.haider@vcnc.org>
pkgname=corkscrew
pkgver=2.0
pkgrel=4
pkgdesc="A tool for tunneling SSH through HTTP proxies"
arch=('i686' 'x86_64')
url="http://www.agroman.net/corkscrew/"
license=('GPL')
source=(http://www.agroman.net/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('35df77e7f0e59c0ec4f80313be52c10a')
build() {
cd ${srcdir}/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make DESTDIR=${pkgdir} install
}
|