mirror of
https://github.com/archlinux/aur.git
synced 2026-03-05 10:52:47 +01:00
assh-2.3-1
This commit is contained in:
parent
c494cb85f7
commit
4fd29f97cb
1 changed files with 11 additions and 8 deletions
19
PKGBUILD
19
PKGBUILD
|
|
@ -1,12 +1,13 @@
|
|||
# Maintainer: Bartek Piotrowski <barthalion@gmail.com>
|
||||
# Maintainer: 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')
|
||||
license=('GPL')
|
||||
url="http://assh.sourceforge.net/"
|
||||
license=('GPL')
|
||||
depends=('openssl')
|
||||
provides=('corkscrew')
|
||||
conflicts=('corkscrew')
|
||||
|
|
@ -16,14 +17,16 @@ md5sums=('9ce2dbb55416a9b1c38307b101067275'
|
|||
'b90b180edbbaa2237aa0f664ea7a47fd')
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$pkgname"
|
||||
cd "${srcdir}"/$pkgname
|
||||
|
||||
mkdir -p $pkgdir/usr/bin
|
||||
patch < $srcdir/destdir.patch
|
||||
make
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$pkgname"
|
||||
make DESTDIR="$pkgdir/" install
|
||||
cd "$srcdir/$pkgname"
|
||||
|
||||
install -d "${pkgdir}"/usr/bin
|
||||
patch < "${srcdir}"/destdir.patch
|
||||
|
||||
make DESTDIR="${pkgdir}" install
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue