blob: ffbe09a9ca8ad252ec0b2d6779254b3744ee0941 (
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
|
# Maintainer: Arti Zirk <arti.zirk@gmail.com>
# Contributor: Timmy Yao <timmy.yao+aur@gmail.com>
pkgname=authy-desktop-win32-bin
pkgver=3.0.0
pkgrel=1
pkgdesc="Two-Factor Authentication from your PC. Converted from Windows electron version"
arch=("x86_64")
provides=('authy')
conflicts=('authy')
url="https://authy.com/"
license=('unknown')
depends=('electron')
makedepends=('npm' 'unzip' 'asar')
source=("https://pkg.authy.com/authy/stable/${pkgver}/win32/x64/authy-${pkgver}-full.nupkg"
"authy.desktop")
sha1sums=('72bd2c570b536d8a462e3ebfaf232751ec3d1dda'
'ad25b45eba0fe935dedfb008f08b005f3bc2504f')
build() {
cd "$srcdir"
unzip -o -j "authy-$pkgver-full.nupkg" lib/net45/resources/app.asar
asar extract-file lib/net45/resources/app.asar img/logos/icon128.png
}
package() {
cd "$srcdir"
install -Dm644 -t "${pkgdir}"/usr/lib/authy app.asar icon128.png
install -Dm644 "$srcdir"/authy.desktop -t "$pkgdir"/usr/share/applications
}
|