summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 479566f62e1620500c502c475ef80973b5509331 (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
# Maintainer: Luis Martinez <luis dot martinez at disroot dot org>
# Contributor: Shengyu Zhang <la@archlinuxcn.org>

pkgname=uivonim
pkgver=0.29.0
pkgrel=2
pkgdesc="Neovim GUI designed for programming"
arch=('x86_64')
license=('AGPL')
url='https://github.com/smolck/uivonim'
depends=('neovim' 'electron' 'nodejs')
makedepends=('npm' 'asar')
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
        "$pkgname.sh"
        "$pkgname.desktop")
sha256sums=('9e22522b70d1b57bdcf6722b744f06c362bc60db7a67989a34521ef8473e735a'
            '6586fb00ced506b207e9e1c39ea605584311642d0a097453f2789c5d8e9b5191'
            '178ff70ae743cae77899e982a89b958b179793e7394b6384d9d2165d00622302')

prepare() {
	_dist='/usr/lib/electron'
	_ver="$(<$_dist/version)"
	cd "$pkgname-$pkgver"
	sed -i "s|\"electron\": \".*\"|\"electron\": \"$_ver\"|" package.json
}

build() {
	cd "$pkgname-$pkgver"
	npm --cache "$srcdir/npm-cache" install
	npm --cache "$srcdir/npm-cache" ci
	npm run build
	./node_modules/.bin/electron-builder \
		--linux \
		--dir \
		-c.electronDist="$_dist" \
		-c.electronVersion="$_ver" \
		--c.asar=true
}

package() {
	install -D "$pkgname.sh" "$pkgdir/usr/bin/$pkgname"
	install -Dm644 "$pkgname.desktop" -t "$pkgdir/usr/share/applications/"
	cd "$pkgname-$pkgver"
	install -d "$pkgdir/usr/lib/$pkgname/"
	asar e dist/linux-unpacked/resources/app.asar "$pkgdir/usr/lib/$pkgname/"
	install -Dm644 art/icon.png "$pkgdir/usr/share/icons/hicolor/512x512/apps/$pkgname.png"
}