diff options
author | root <root@rshg054.dnsready.net> | 2012-03-13 00:01:30 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-03-13 00:01:30 +0000 |
commit | 217a7715291ceb935900b71bde082023bc441290 (patch) | |
tree | 6cbfcf7d11f0bd1e412f542080ec995fc26daffd /community/corkscrew/PKGBUILD | |
parent | 7e61bbcf6b3c8ffe6c076268044d83b446fceeab (diff) |
Tue Mar 13 00:01:30 UTC 2012
Diffstat (limited to 'community/corkscrew/PKGBUILD')
-rw-r--r-- | community/corkscrew/PKGBUILD | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/community/corkscrew/PKGBUILD b/community/corkscrew/PKGBUILD index 547e7980f..0ca69f387 100644 --- a/community/corkscrew/PKGBUILD +++ b/community/corkscrew/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 15297 2010-04-09 16:08:30Z jlichtblau $ +# $Id: PKGBUILD 67471 2012-03-11 21:49:49Z lcarlier $ # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> # Contributor: gothmog.todi <t.haider@vcnc.org> pkgname=corkscrew pkgver=2.0 -pkgrel=4 +pkgrel=5 pkgdesc="A tool for tunneling SSH through HTTP proxies" arch=('i686' 'x86_64') url="http://www.agroman.net/corkscrew/" @@ -16,6 +16,10 @@ build() { cd ${srcdir}/$pkgname-$pkgver ./configure --prefix=/usr - make || return 1 + make +} +package() { + cd ${srcdir}/$pkgname-$pkgver + make DESTDIR=${pkgdir} install } |