blob: f7593cc2b5d5d6f1c769dafdad82802742c5e792 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
# Maintainer: Giovanni Santini <giovannisantini93@yahoo.it>
pkgbase=git-credential-manager
pkgname=("$pkgbase"
"${pkgbase}-extras")
pkgver=2.6.0
pkgrel=1
pkgdesc="A secure Git credential helper built on .NET that runs on Windows, macOS, and Linux"
arch=(i686 x86_64)
url="https://github.com/git-ecosystem/git-credential-manager"
license=('MIT')
makedepends=(dotnet-sdk-8.0 dpkg fontconfig krb5 zlib)
checkdepends=(dotnet-runtime-8.0 git)
options=(!strip !debug)
install="$pkgname.install"
source=("${pkgbase}-${pkgver}.tar.gz::${url}/archive/refs/tags/v${pkgver}.tar.gz"
"trim-executables.diff")
sha512sums=('cd26beca6130ef4d85637b90342fa934b207e9b4adece2c97800c7da1d3e4fec920adda7069d6b418c1ea4405a29cd7a27b442cf453711f70e41916c1e90781e'
'e5253397233ef8aee547402c4c1e2430ed8bf87346896d7052ce5ef4967fb705431b3516d53c1508aee9eb1fbe3204500c614be04fe2af326851a8a7d2fefd6d')
# Seems that trimming is not required, either because of newer .NET or project changes
# Feel free to uncomment these lines if needed
#prepare() {
#cd "$pkgbase"
# Based on this chinese article:
# https://live4thee.github.io/posts/2021-02-09-dotnet-core-on-linux-2/
# Thanks web translators :P
#git apply ../trim-executables.diff
#}
build() {
cd "${pkgbase}-${pkgver}"
dotnet build --configuration LinuxRelease
}
check() {
cd "${pkgbase}-${pkgver}"
LANG=C dotnet test --configuration LinuxRelease || echo "Seems some tests fail. Please report them upstream."
}
package_git-credential-manager() {
provides=($pkgname)
conflicts=("${pkgname}-bin")
replaces=(git-credential-manager-core)
depends+=(zlib krb5)
optdepends=("${pkgname}-extras: additional QT UIs for logging in")
cd "${pkgbase}-${pkgver}"
mkdir -pv "$pkgdir/usr/bin"
mkdir -pv "$pkgdir/usr/lib/share/$pkgname"
mkdir -pv "$pkgdir/usr/share/licenses/$pkgname"
for bin in git-credential-manager
do
cp -v "out/linux/Packaging.Linux/Release/payload/$bin" "$pkgdir/usr/lib/share/$pkgname"
ln -sv "/usr/lib/share/$pkgname/$bin" "$pkgdir/usr/bin/$bin"
done
# The package was renamed time ago
# https://github.com/GitCredentialManager/git-credential-manager/pull/551
# https://github.com/GitCredentialManager/git-credential-manager/blob/main/docs/rename.md
cp -v LICENSE "$pkgdir/usr/share/licenses/$pkgname"
}
package_git-credential-manager-extras() {
pkgdesc="Additional login UIs to Github and Bitbucket for Git Credential Manager Core"
depends+=(zlib krb5 fontconfig "$pkgbase")
cd "${pkgbase}-${pkgver}"
mkdir -pv "$pkgdir/usr/lib/share/$pkgbase"
mkdir -pv "$pkgdir/usr/share/licenses/$pkgname"
for lib in libHarfBuzzSharp.so libSkiaSharp.so
do
cp -v "out/linux/Packaging.Linux/Release/payload/$lib" "$pkgdir/usr/lib/share/$pkgbase"
done
# No extra UI available as of now: see
# https://github.com/git-ecosystem/git-credential-manager/pull/1207
cp -v LICENSE "$pkgdir/usr/share/licenses/$pkgname"
}
|