mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
61 lines
2.2 KiB
Tcl
61 lines
2.2 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 beekeeper-studio beekeeper-studio 5.9.1 v
|
|
revision 0
|
|
|
|
homepage https://beekeeperstudio.io
|
|
|
|
description Cross platform SQL editor and database management app for \
|
|
Windows, Linux, and Mac.
|
|
|
|
long_description Beekeeper Studio is a free and open source SQL editor and \
|
|
database manager. Beekeeper Studio is cross-platform, and \
|
|
available for Linux, Mac, and Windows. It features \
|
|
autocomplete SQL query editor with syntax highlighting, \
|
|
tabbed interface, so you can multitask, the ability to \
|
|
sort and filter table data to find just what you need, \
|
|
sensible keyboard-shortcuts, the ability to save queries \
|
|
for later, query run-history so you can find that one \
|
|
query you got working 3 days ago, and a default dark theme.
|
|
|
|
categories databases
|
|
license MIT
|
|
platforms darwin
|
|
supported_archs x86_64 arm64
|
|
|
|
maintainers {gmail.com:herby.gillot @herbygillot} \
|
|
openmaintainer
|
|
|
|
checksums rmd160 b3aa3d0997a59dce59144dfc4a9a9cbab57d0d13 \
|
|
sha256 addfafcbf28ff8fae1a050eb5903ec966b2895939af1fe14b22278e67fabba1d \
|
|
size 85982101
|
|
|
|
depends_build port:yarn \
|
|
port:npm10
|
|
|
|
build.env-append CSC_IDENTITY_AUTO_DISCOVERY=false \
|
|
CXX=${configure.cxx}
|
|
|
|
use_configure no
|
|
use_xcode yes
|
|
|
|
build {
|
|
# Set up all JS dependencies
|
|
system -W ${worksrcpath} "${build.env} yarn --frozen-lockfile"
|
|
|
|
# Build electron app
|
|
system -W ${worksrcpath} \
|
|
"${build.env} yarn run electron:build --mac dir --publish never"
|
|
}
|
|
|
|
destroot {
|
|
copy {*}[glob "${worksrcpath}/apps/studio/dist_electron/mac*/Beekeeper Studio.app"] \
|
|
${destroot}${applications_dir}
|
|
}
|
|
|
|
github.livecheck.regex {([0-9.]+)}
|
|
github.tarball_from archive
|