mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
74 lines
2.5 KiB
Tcl
74 lines
2.5 KiB
Tcl
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
PortSystem 1.0
|
|
PortGroup github 1.0
|
|
|
|
github.setup dbeaver dbeaver 26.1.1
|
|
github.tarball_from releases
|
|
revision 0
|
|
name dbeaver-community
|
|
|
|
categories databases
|
|
supported_archs x86_64 arm64
|
|
license Apache-2
|
|
|
|
maintainers {judaew @judaew} {mascguy @mascguy} openmaintainer
|
|
|
|
description Free multi-platform database tool for developers, SQL \
|
|
programmers, database administrators and analysts.
|
|
long_description \
|
|
{*}${description} Supports any database which has JDBC driver (which \
|
|
basically means - ANY database). Has a lot of features including metadata \
|
|
editor, SQL editor, rich data editor, ERD, data export/import/migration, \
|
|
SQL execution plans, etc. Uses plugins architecture and provides \
|
|
additional functionality for the following databases: MySQL/MariaDB, \
|
|
PostgreSQL, Greenplum, Oracle, DB2 LUW, Exasol, SQL Server, Sybase/SAP \
|
|
ASE, SQLite, Firebird, H2, HSQLDB, Derby, Teradata, Vertica, Netezza, \
|
|
Informix, etc.
|
|
homepage https://dbeaver.io/
|
|
|
|
use_dmg yes
|
|
|
|
set dist_x86_64 dbeaver-ce-${version}-macos-x86_64${extract.suffix}
|
|
set dist_arm64 dbeaver-ce-${version}-macos-aarch64${extract.suffix}
|
|
|
|
variant all_arches description {Download files for all arches} {
|
|
distfiles ${dist_x86_64} \
|
|
${dist_arm64}
|
|
}
|
|
|
|
checksums-append \
|
|
${dist_x86_64} \
|
|
rmd160 0d42a6892c92da251e9cbcfae2d3c732943b69d2 \
|
|
sha256 1264c7bb311ce1b78ce76842d93ee9a19d5238a6bd90ed91a7736772d96c058a \
|
|
size 123238963
|
|
checksums-append \
|
|
${dist_arm64} \
|
|
rmd160 8be8aed595cb4085b638f94e02ff22129927dd95 \
|
|
sha256 3f0b85c0413e681106ff293036b101976d327eb69d7bc05d5141dd2c91819307 \
|
|
size 122056241
|
|
|
|
switch ${configure.build_arch} {
|
|
x86_64 {
|
|
distfiles ${dist_x86_64}
|
|
}
|
|
arm64 {
|
|
distfiles ${dist_arm64}
|
|
}
|
|
default {
|
|
known_fail yes
|
|
pre-fetch {
|
|
ui_error "${subport} @ ${version} only supported for architectures ${supported_archs}"
|
|
return -code error "Unsupported architecture: ${build_arch}"
|
|
}
|
|
}
|
|
}
|
|
|
|
use_configure no
|
|
|
|
build {}
|
|
|
|
destroot {
|
|
copy ${worksrcpath}/DBeaver.app ${destroot}${applications_dir}
|
|
}
|