38 lines
1.3 KiB
Bash
38 lines
1.3 KiB
Bash
# Template file for 'dbeaver'
|
|
pkgname=dbeaver
|
|
version=23.3.0
|
|
revision=1
|
|
# the build downloads binaries linked to glibc
|
|
archs="x86_64 aarch64"
|
|
hostmakedepends="apache-maven openjdk17"
|
|
depends="openjdk17"
|
|
short_desc="Free Universal Database Tool"
|
|
maintainer="Kyle Nusbaum <knusbaum+void@sdf.org>"
|
|
license="Apache-2.0"
|
|
homepage="https://dbeaver.io"
|
|
changelog="https://dbeaver.io/news/"
|
|
distfiles="https://github.com/dbeaver/dbeaver/archive/${version}.tar.gz"
|
|
checksum=617ea555269bdc0a1d4c9a59c653713df8e3404d676ee055258e9a16903e29ec
|
|
nopie=true
|
|
|
|
do_build() {
|
|
mvn package -P all-platforms
|
|
}
|
|
|
|
do_install() {
|
|
vmkdir /usr/lib
|
|
vcopy "product/community/target/products/org.jkiss.dbeaver.core.product/linux/gtk/${XBPS_TARGET_MACHINE}/dbeaver" /usr/lib/
|
|
|
|
# Delete folders with Java Native Access .so's for different architectures
|
|
jna_dir="${DESTDIR}/usr/lib/dbeaver/plugins/com.sun.jna_5.13.0.v20230812-1000/com/sun/jna"
|
|
jna_arch="linux-${XBPS_TARGET_MACHINE//_/-}"
|
|
find "$jna_dir" -depth -mindepth 1 -type d -not -name $jna_arch -exec rm -rf {} \;
|
|
|
|
vmkdir /usr/bin
|
|
ln -s /usr/lib/dbeaver/dbeaver ${DESTDIR}/usr/bin/dbeaver
|
|
|
|
vinstall product/community/icons/dbeaver.png 644 usr/share/pixmaps
|
|
vinstall product/community/icons/dbeaver.xpm 644 usr/share/pixmaps
|
|
vinstall ${FILESDIR}/dbeaver.desktop 0644 usr/share/applications
|
|
}
|