blob: 888e2d59b3f442e20a6013b93aaa044a30f3e42f (
plain) (
blame)
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
|
# Template file for 'DataGrip'
pkgname=DataGrip
version=2020.1.5
revision=1
archs="i686 x86_64"
wrksrc="DataGrip-${version}"
depends="jetbrains-jdk-bin"
short_desc="Cross-Platform IDE for Databases & SQL by JetBrains"
maintainer="Anton Afanasyev <anton@doubleasoftware.com>"
license="custom:Commercial"
homepage="https://www.jetbrains.com/datagrip"
distfiles="https://download.jetbrains.com/datagrip/datagrip-${version}.tar.gz"
checksum=a97231cbfe656ef3fcad5b66f3bd484cc676b5e89780543efdd49420ce690518
repository=nonfree
restricted=yes
nopie=yes
python_version=3
post_extract() {
# Remove files for other CPU architectures
rm -rf lib/pty4j-native/linux/ppc64le
case "$XBPS_TARGET_MACHINE" in
x86_64)
rm -rf bin/fsnotifier
rm -rf bin/datagrip.vmoptions
rm -rf lib/pty4j-native/linux/x86
;;
i686)
rm -rf bin/fsnotifier64
rm -rf bin/datagrip64.vmoptions
rm -rf lib/pty4j-native/linux/x86_64
;;
esac
}
do_install() {
TARGET_PATH="usr/lib/${pkgname}"
vmkdir usr/bin
vmkdir ${TARGET_PATH}
local i
for i in license/* ; do
vlicense $i
done
local launcher_path="bin/datagrip.sh"
sed -i '1 s/$/\nDATAGRIP_JDK=${DATAGRIP_JDK:-${IDEA_JDK}}/' "${launcher_path}"
vcopy bin ${TARGET_PATH}
vcopy lib ${TARGET_PATH}
vcopy plugins ${TARGET_PATH}
vcopy product-info.json ${TARGET_PATH}
vcopy build.txt ${TARGET_PATH}
ln -sf "/${TARGET_PATH}/${launcher_path}" "${DESTDIR}/usr/bin/${pkgname}"
}
|