-
Notifications
You must be signed in to change notification settings - Fork 613
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #294 from mjcheetham/gcm-core
Add support for Git Credential Manager Core as a credential helper option
- Loading branch information
Showing
7 changed files
with
150 additions
and
32 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Maintainer: Johannes Schindelin/Matthew J Cheetham | ||
|
||
_realname="git-credential-manager-core" | ||
pkgbase="mingw-w64-${_realname}" | ||
pkgname=("${MINGW_PACKAGE_PREFIX}-${_realname}") | ||
pkgver=2.0.164.25618 | ||
pkgrel=0 | ||
_realver=$pkgver | ||
_realtag=v${pkgver%.*}-beta | ||
pkgdesc="Credential Manager for Git" | ||
arch=('any') | ||
project_url="https://github.com/microsoft/Git-Credential-Manager-Core" | ||
zip_url="${project_url}/releases/download/${_realtag}/gcmcore-win-x86-${_realver}.zip" | ||
src_zip_url="${project_url}/archive/${_realtag}.zip" | ||
license=('MIT') | ||
groups=('VCS') | ||
|
||
source=("${zip_url}" "$src_zip_url") | ||
|
||
sha256sums=('a9d424bb56e5571a9a80e195376aa7c7fcf5f890fe1029f45eb81be04eb9d264' | ||
'7b07bf3317ae4e47446a93febe2b6fcde6f409bd3ab3b78358b6dfcc13ab5592') | ||
|
||
package() { | ||
prefix="$pkgdir/${MINGW_PREFIX}" | ||
srcdir2="${srcdir}/" | ||
install -d -m755 "${prefix}"/libexec/git-core | ||
install -m755 "$srcdir2"/*.{dll,exe} "${prefix}"/libexec/git-core | ||
install -d -m755 "${prefix}"/doc/git-credential-manager-core | ||
} |
This file contains 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