blob: 2c08abd582bb009cf2ba8fd92c2d88a12d0b8b48 (
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
# Maintainer: Mark Wagie <mark dot wagie at proton dot me>
pkgname=yubico-authenticator
_app_id=com.yubico.yubioath
pkgdesc="Yubico Authenticator for Desktop"
pkgver=7.1.1
pkgrel=1
_flutter_ver=3.24.2
arch=('x86_64' 'aarch64')
url="https://github.com/Yubico/yubioath-flutter"
license=('Apache-2.0')
depends=(
'ccid'
'gtk3'
'libayatana-appindicator'
'libnotify'
'pcsclite'
'python-mss'
'python-pillow'
'python-zxing-cpp'
'yubikey-manager'
)
makedepends=(
'chrpath'
'clang'
'cmake'
'fvm'
'git'
'ninja'
'python-build'
'python-installer'
'python-poetry-core'
'python-wheel'
)
source=("git+https://github.com/Yubico/yubioath-flutter.git#tag=$pkgver?signed")
sha256sums=('d2828dcf8affd8ee755c146d973890b0715a4a5c5cec7910322572abeca85d5e')
validpgpkeys=('20EE325B86A81BCBD3E56798F04367096FBA95E8') # Dain Nilsson <dain@yubico.com>
prepare() {
cd yubioath-flutter
export FVM_CACHE_PATH="$srcdir/fvm"
fvm install "${_flutter_ver}"
fvm global "${_flutter_ver}"
# Disable analytics
fvm flutter --disable-analytics
# Pull dependencies within prepare, allowing for offline builds later on
fvm flutter pub get
desktop-file-edit --set-key=Exec --set-value="authenticator" --set-icon="${_app_id}" \
resources/linux/linux_support/com.yubico.authenticator.desktop
# Don't copy the Helper since we're not using Pyinstaller
sed -i '/build\/linux\/helper/d' linux/CMakeLists.txt
}
build() {
cd yubioath-flutter
pushd helper
GIT_DIR='.' python -m build --wheel --no-isolation
popd
export FVM_CACHE_PATH="$srcdir/fvm"
fvm flutter build linux
}
check() {
cd yubioath-flutter
export FVM_CACHE_PATH="$srcdir/fvm"
fvm flutter test
}
package() {
cd yubioath-flutter
if [ $CARCH == "aarch64" ]; then
FLUTTER_ARCH=arm64
else
FLUTTER_ARCH=x64
fi
pushd helper
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm755 authenticator-helper.py "$pkgdir/opt/$pkgname/helper/authenticator-helper"
install -Dm755 shell.py -t "$pkgdir/opt/$pkgname/helper/"
popd
install -Dm755 build/linux/${FLUTTER_ARCH}/release/bundle/authenticator -t \
"$pkgdir/opt/$pkgname/"
cp -r build/linux/${FLUTTER_ARCH}/release/bundle/{data,lib} "$pkgdir/opt/$pkgname"
install -d "$pkgdir/usr/bin"
ln -s "/opt/$pkgname/authenticator" "$pkgdir/usr/bin/"
install -Dm644 "resources/icons/${_app_id}.png" -t \
"$pkgdir/usr/share/icons/hicolor/128x128/apps/"
install -Dm644 "resources/icons/${_app_id}-32x32.png" \
"$pkgdir/usr/share/icons/hicolor/32x32/apps/${_app_id}.png"
install -Dm644 "resources/icons/${_app_id}-1000x1000.png" \
"$pkgdir/usr/share/icons/hicolor/1000x1000/apps/${_app_id}.png"
install -Dm644 resources/linux/linux_support/com.yubico.authenticator.desktop -t \
"$pkgdir/usr/share/applications/"
# Remove insecure RUNPATH pointing to build dir
chrpath --delete "$pkgdir/opt/$pkgname"/lib/*.so
}
|