blob: 2bf08a776bc805cb210392df5c032b7924bf55d0 (
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
|
# Maintainer: Yoan Blanc <yoan@dosimple.ch>
# Contributor: Mark Wagie <mark dot wagie at tutanota dot com>
pkgname=headset
pkgver=4.2.1
pkgrel=1
pkgdesc="Discover and collect music on YouTube"
arch=('x86_64')
url="https://headsetapp.co"
license=('MIT')
depends=('gtk3' 'libnotify' 'nss' 'libxss')
makedepends=('npm' 'git')
source=("$pkgname-$pkgver.tar.gz::https://github.com/headsetapp/headset-electron/archive/v$pkgver.tar.gz"
"$pkgname.desktop")
sha256sums=('b7fc18d608c8eb50bfecd349b95ceaa151bb3c5c944628d623cea575e6a0b337'
'3bc18b531f1e914e317267a570241855dbf11b27347435fe4770d75b74958123')
build() {
cd "$pkgname-electron-$pkgver"
# https://github.com/typicode/husky/issues/851
git init .
npm ci --cache "$srcdir/npm-cache"
node_modules/.bin/electron-packager . \
--executable-name headset \
--ignore "(^/bin$|^/sig$|^/gh-pages$|^/player$|^/test$|Procfile|\.md$|^\.|^\/\.)" \
--prune true \
--out build/ \
--overwrite \
--asar \
--platform=linux \
--arch=x64
}
package() {
cd "$pkgname-electron-$pkgver"
# Fix file permissions
find build/Headset-linux-x64 -type f -exec chmod 0644 {} +
find build/Headset-linux-x64 -type d -exec chmod 0755 {} +
chmod 0755 build/Headset-linux-x64/"$pkgname"
install -d "$pkgdir/opt/$pkgname"
cp -r build/Headset-linux-x64/* "$pkgdir/opt/$pkgname"
install -d "$pkgdir/usr/bin"
ln -s "/opt/$pkgname/$pkgname" "$pkgdir/usr/bin/$pkgname"
install -Dm644 "$srcdir/$pkgname.desktop" -t "$pkgdir/usr/share/applications"
install -Dm644 "src/icons/$pkgname.png" -t "$pkgdir/usr/share/pixmaps"
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
}
|