blob: a2a7ce939f8a2e236499510d8458c876772c1248 (
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
|
# Maintainer: Rolf van Kleef <aur@rolfvankleef.nl>
# Contributor: Gregory Goijaerts <crecketgaming@gmail.com>
# Contributor: Dennis Snijder <dennissnijder97@gmail.com>
# Contributor: Nick Duijvelshoff <nick@duijvelshoff.com>
# Contributor: basst85 <bastiaan85@gmail.com>
# Contributor: Kees Kluskens
# Contributor: TimZ99
# Contributor: Emile Bons
pkgname="bunq-desktop-git"
pkgver=0.8.1.r53.g33c483b
pkgrel=1
pkgdesc="A desktop implementation for the bunq API"
url="https://github.com/BunqCommunity/BunqDesktop"
provides=('bunq-desktop')
conflicts=(
'bunq-desktop-src'
'bunq-desktop-bin'
)
arch=(
'x86_64'
)
license=(
'MIT'
)
depends=(
'nodejs'
)
makedepens=(
'git'
'yarn'
)
source=(
"$pkgname"::"git://github.com/BunqCommunity/BunqDesktop.git"
"$pkgname.desktop"
)
sha256sums=(
"SKIP"
"34fd4c2b947cdd081e961b38d83582e27328b430a51580f78dd4c8769712cfd1"
)
pkgver() {
cd "$srcdir/$pkgname"
git describe --long --tags | sed "s/\([^-]*-g\)/r\1/;s/-/./g"
}
build() {
cd $srcdir/$pkgname
# Generate release files
yarn && yarn release
}
package() {
mkdir $pkgdir/usr
mkdir $pkgdir/usr/bin
mkdir $pkgdir/usr/share
mkdir $pkgdir/usr/share/pixmaps
mkdir $pkgdir/opt
cp -R\
$srcdir/$pkgname/dist/linux-unpacked\
$pkgdir/opt/$pkgname
cp -R\
$srcdir/$pkgname/LICENSE\
$pkgdir
cp\
$srcdir/$pkgname/build/icons/512x512.png\
$pkgdir/usr/share/pixmaps/bunq.png
pushd $pkgdir/usr/bin
ln -s\
../../opt/$pkgname/bunqdesktop\
bunq-desktop-src
popd
desktop-file-install\
$pkgname.desktop\
--dir $pkgdir/usr/share/applications/
}
|