diff options
Diffstat (limited to 'pcr/assh/PKGBUILD')
-rw-r--r-- | pcr/assh/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/pcr/assh/PKGBUILD b/pcr/assh/PKGBUILD new file mode 100644 index 000000000..c62dba8c4 --- /dev/null +++ b/pcr/assh/PKGBUILD @@ -0,0 +1,31 @@ +# Maintainer : Aurelien Desbrieres <aurelien@hackers.camp> +# Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> +# Contributor: Bartek Piotrowski <barthalion@gmail.com> + +pkgname=assh +pkgver=2.3 +pkgrel=1 +pkgdesc="SSH client which uses SSL proxies to establish anonymous connections" +arch=('i686' 'x86_64') +url="http://assh.sourceforge.net/" +license=('GPL') +depends=('openssl') +provides=('corkscrew') +conflicts=('corkscrew') +source=(http://downloads.sourceforge.net/assh/$pkgname-$pkgver.tgz + destdir.patch) + +build() { + cd "${srcdir}"/$pkgname + + make +} + +package() { + cd "$srcdir/$pkgname" + + install -d "${pkgdir}"/usr/bin + patch < "${srcdir}"/destdir.patch + + make DESTDIR="${pkgdir}" install +} |