summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ecc4e30dad0b5cbc795d01a4e0e9b8a81ebd6990 (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: emersion <contact emersion fr>
pkgname=protonmail-web-git
_pkgname=protonmail-web
pkgver=r4782.81406ede
pkgrel=1
license=('MIT')
pkgdesc='Official AngularJS web client for the ProtonMail secure email service'
makedepends=("npm")
arch=("any")
url='https://github.com/ProtonMail/WebClient'
source=("${pkgname%-*}::git+https://github.com/ProtonMail/WebClient.git")
sha1sums=('SKIP')
provides=('protonmail-web')
conflicts=('protonmail-web')

pkgver() {
	cd "${srcdir}/${_pkgname}"
	printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
	cd "${srcdir}/${_pkgname}"
	export NODE_ENV=dist
	npm install
	npm run build --api=prod
}

package() {
	cd "${srcdir}/${_pkgname}"
	install -dm755 "${pkgdir}/usr/share/webapps/${_pkgname}"
	cp -rL build/* "${pkgdir}/usr/share/webapps/${_pkgname}"
}