27 lines
822 B
Bash
27 lines
822 B
Bash
# Template file for 'dbeaver'
|
|
pkgname=dbeaver
|
|
version=21.2.5
|
|
revision=1
|
|
# the build downloads binaries linked to glibc
|
|
archs="x86_64 aarch64"
|
|
hostmakedepends="apache-maven"
|
|
depends="openjdk11" # openjdk11 or later version, when available
|
|
short_desc="Free Universal Database Tool"
|
|
maintainer="Kyle Nusbaum <knusbaum+void@sdf.org>"
|
|
license="Apache-2.0"
|
|
homepage="https://dbeaver.io"
|
|
distfiles="https://github.com/dbeaver/dbeaver/archive/${version}.tar.gz"
|
|
checksum=55c5378a3ab3c02d27225dc7ad48d75619c3c84117f4d24e5ccaaa95979b4edd
|
|
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/
|
|
|
|
vmkdir /usr/bin
|
|
ln -s /usr/lib/dbeaver/dbeaver ${DESTDIR}/usr/bin/dbeaver
|
|
}
|