Created
July 10, 2020 15:51
-
-
Save outloudvi/81b85e6d6a42d57bbe7d75dcf255e146 to your computer and use it in GitHub Desktop.
PKGBUILD for vscode-ssh-askpass-kde.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgname=vscode-ssh-askpass-kde | |
pkgver=0.1.0 | |
pkgrel=0 | |
pkgdesc="Fix VSCode SSH push process for KDE" | |
arch=('any') | |
url="https://github.com/microsoft/vscode/issues/57488#issuecomment-636184685" | |
license=('MIT') | |
depends=('ksshaskpass') | |
optdepends=('code: open source build of VSC' | |
'visual-studio-code-bin: official version of VSC' | |
'visual-studio-code-insiders: official insider version of VSC') | |
source=() | |
md5sums=() | |
package() { | |
mkdir -p ${pkgdir}/usr/lib/ssh | |
# https://github.com/archlinuxcn/repo/blob/master/archlinuxcn/flutter/PKGBUILD | |
ln -srf /usr/bin/ksshaskpass ${pkgdir}/usr/lib/ssh/ssh-askpass | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment