blob: 6836c54ab7d930d54daf663cf5044c6b1a13b06c (
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
|
# Maintainer: David Parrish <daveparrish@tutanota.com>
pkgname=zap-desktop-git
pkgver=0.2.1.beta.142.g0afe3699
pkgrel=1
pkgdesc="Lightning wallet focused on user experience and ease of use"
arch=('x86_64')
url="https://github.com/LN-Zap/zap-desktop"
license=('MIT')
depends=('lnd')
install="$pkgname.install"
source=("$pkgname::git+https://github.com/LN-Zap/zap-desktop.git"
"zap-desktop.desktop")
sha256sums=('SKIP'
'8c7a0940cced4e02b9d4dc1e2ca98f546117a079f37b91739ef70a321f86d5ee')
pkgver() {
cd "$pkgname" || exit
git describe --tags | sed 's/^v//;s/-/./g'
}
build() {
cd "$pkgname" || exit
yarn
npm run package
}
package() {
install -d "$pkgdir"/{opt/,usr/bin/,usr/share/applications,/usr/share/pixmaps,/usr/share/licenses/$pkgname}
# Install all .deb files into /opt.
mkdir "$pkgdir/opt/$pkgname"
cp -r "$srcdir/$pkgname/release/linux-unpacked/". "$pkgdir/opt/$pkgname"
# Symlink executable
ln -s "/opt/$pkgname/zap-desktop" "$pkgdir/usr/bin/zap-desktop"
# Symlink licenses
ln -s "/opt/$pkgname/LICENSES.electron.txt" "$pkgdir/usr/share/licenses/$pkgname"
ln -s "/opt/$pkgname/LICENSES.chromium.html" "$pkgdir/usr/share/licenses/$pkgname"
# Desktop icon
install -D -m644 "$srcdir/zap-desktop.desktop" "${pkgdir}/usr/share/applications/zap-desktop.desktop"
install -D -m644 "$srcdir/$pkgname/resources/icons/icon.png" "${pkgdir}/usr/share/pixmaps/zap-desktop.png"
}
|