From 032ae2f7fd48a0925fa1754c32237b790013492f Mon Sep 17 00:00:00 2001 From: Andreas Wachter Date: Mon, 23 May 2022 15:03:40 +0200 Subject: [PATCH] added dbeaver-ce (#168) * added dbeaver-ce * added DBeaver to Readme Co-authored-by: Martin Wimpress <304639+flexiondotorg@users.noreply.github.com> --- README.md | 1 + deb-get | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/README.md b/README.md index 7ba8408d..6fb8e669 100644 --- a/README.md +++ b/README.md @@ -128,6 +128,7 @@ The software below can be installed, updated and removed using `deb-get`. [Cawbird](https://ibboard.co.uk/cawbird/) (`cawbird`) - Twitter client for the Linux desktop.
[Visual Studio Code](https://code.visualstudio.com/) (`code`) - Code editing. Redefined.
[VSCodium](https://vscodium.com/) (`codium`) - Community-driven, freely-licensed binary distribution of Microsoft's Code editor.
+ [DBeaver](https://dbeaver.io/) (`dbeaver-ce`) - Free multi-platform database tool.
[deb-get](https://github.com/wimpysworld/deb-get) (`deb-get`) - 'apt-get' functionality for .debs published in 3rd party repositories or via direct download package.
[Discord](https://discord.com/) (`discord`) - A place that makes it easy to talk every day and hang out more often.
[Docker Engine](https://www.docker.com/) (`docker-ce`) - Open source containerization technology for building and containerizing your applications.
diff --git a/deb-get b/deb-get index d7ee1fd7..6f675405 100755 --- a/deb-get +++ b/deb-get @@ -1334,6 +1334,15 @@ function deb_expressvpn() { SUMMARY="Popular VPN software" } +function deb_dbeaver-ce() { + ARCHS_SUPPORTED="amd64 i386" + VERSION_PUBLISHED="$(curl -s https://dbeaver.io/debs/dbeaver-ce/ | grep -o '"dbeaver-ce_.*'${HOST_ARCH}'.deb"' | sort --version-sort | tail -n1 | cut -d"_" -f2)" + URL="https://dbeaver.io/debs/dbeaver-ce/dbeaver-ce_${VERSION_PUBLISHED}_${HOST_ARCH}.deb" + PRETTY_NAME="DBeaver" + WEBSITE="https://dbeaver.io/" + SUMMARY="Database GUI Client" +} + function deb_obs-studio() { PPA="ppa:flexiondotorg/obs-fully-loaded" PRETTY_NAME="OBS Studio (Fully Loaded)"