blob: 0316ec3ce311ce929e8ec201a3d2cb79e1579773 (
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
|
# Maintainer: Tauri Gregory <arch_aur --at-- tgregory dot net>
# Contributor: Original submitter: Dimitris Kiziridis <ragouel at outlook dot com>
pkgname=constellation
pkgver=3.0.0
_pkgver=3.0.0
pkgrel=1
pkgdesc="A graph-focused data visualisation and interactive analysis application"
arch=('x86_64')
url='https://constellation-app.com'
license=('Apache-2.0')
depends=('java-runtime'
'libnet'
'lib32-glibc'
'gtk3'
'gtk2')
makedepends=('gendesk')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/constellation-app/constellation/releases/download/v${_pkgver}/constellation-linux-v${_pkgver}.tar.gz"
'icon.png')
sha256sums=('63d30e5cab47767470169096cb600d290f4aa875f32b314d1749371f13caac0e'
'4ddf0edb1323aa2e752a30fe17303e8ef25280e6d53dcdd147b9d7c811c05565')
package() {
install -d "${pkgdir}/opt"
cp -avR constellation "${pkgdir}/opt"
install -Dm644 icon.png "${pkgdir}/usr/share/pixmaps/constellation.png"
gendesk -f -n --pkgname "${pkgname}" \
--pkgdesc "$pkgdesc" \
--name "Constellation" \
--comment "$pkgdesc" \
--exec "${pkgname}" \
--categories 'Utility;Development;Science;Application' \
--icon "${pkgname}"
install -Dm644 "${pkgname}.desktop" -t "${pkgdir}/usr/share/applications"
echo "#!/usr/bin/env bash
cd /opt/constellation/bin
./constellation
" > "${pkgname}.sh"
install -Dm755 "${pkgname}.sh" "${pkgdir}/usr/bin/constellation"
}
|