31 lines
891 B
Bash
31 lines
891 B
Bash
# Template file for 'dbeaver'
|
|
pkgname=dbeaver
|
|
version=22.3.5
|
|
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=1f1cbddca091163143f54973fce06323ea8f9cb34400acd643099f09a77c95cc
|
|
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
|
|
|
|
vinstall ${FILESDIR}/dbeaver.desktop 0644 usr/share/applications
|
|
}
|