56 lines
1.4 KiB
Bash
56 lines
1.4 KiB
Bash
# Template file for 'DataGrip'
|
|
pkgname=DataGrip
|
|
version=2019.3.4
|
|
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=6409a7ed5b91d4b54adc03bb784e86ecde035b0c256aad66ab463d2d8288ebf9
|
|
repository=nonfree
|
|
restricted=yes
|
|
nopie=yes
|
|
|
|
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}"
|
|
}
|