summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8ed4981900bb776938f04fa7fffbec52cda58460 (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
# Maintainer: DenBrahe <denbrahe@hotmail.com>
# Contributor: Philipp A. <flying-sheep@web.de>
# Contributor: theSander <aur@sandervanbalen.be>
pkgname=rambox-os-git
pkgver=r1074.3a26c65
pkgrel=1
pkgdesc="Free and Open Source messaging and emailing app that combines common web applications into one."
arch=(i686 x86_64)
url="https://github.com/TheGoddessInari/rambox"
license=('GPL3')
depends=(electron)
makedepends=('java-runtime=8' 'git' 'desktop-file-utils' 'ruby' 'npm' 'sencha-cmd-6')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}" "rambox" "rambox-bin")
replaces=()
backup=()
options=()
install=
source=(
	'rambox-os::git+https://github.com/TheGoddessInari/rambox.git'
	"${pkgname%-git}.desktop"
	)
noextract=()
md5sums=('SKIP' 'SKIP')


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

prepare() {
	cd "$srcdir/${pkgname%-git}"
	sed -Ei 's/\s+"electron": "[^"]+",//' package.json
}

build() {
  # get jdk 8
  if [ ! -z "$(archlinux-java get | grep 8)" ]; then
    _JDK="$(archlinux-java get)"
  else
    _JDK=$(archlinux-java status \
      | grep java | grep 8 \
      | sed -e 's/^[[:space:]]*//' | cut -d "/" -f1 \
      | head -n1)
  fi

  # build
	cd "$srcdir/${pkgname%-git}"
	npm install
  # build with a jdk 8
	env PATH="/usr/lib/jvm/$_JDK/jre/bin/:$PATH" npm run repack:linux64
}

package() {
	install -d "$pkgdir/usr/lib"
	install -d "$pkgdir/usr/bin"

	cp -r "$srcdir/${pkgname%-git}/dist/linux-unpacked" "$pkgdir/usr/lib/${pkgname%-git}"
	
	install -Dm644 "$srcdir/${pkgname%-git}/resources/Icon.png" "$pkgdir/usr/share/pixmaps/${pkgname%-git}.png"
	ln -s "/usr/lib/${pkgname%-git}/rambox" "${pkgdir}/usr/bin/${pkgname%-git}"
	desktop-file-install "$srcdir/${pkgname%-git}.desktop" --dir "$pkgdir/usr/share/applications/"
}