summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorzxp198210052023-08-11 11:34:16 +0800
committerzxp198210052023-08-11 11:34:16 +0800
commit77d9c786a98da2bc4dfc12176ffd869a0c5eed26 (patch)
tree5b5c2c6a9d5baabf1e460810098468b09fce6b89
parent01d6e854037ab4e3c8d67101ce5534143d153fe0 (diff)
downloadaur-77d9c786a98da2bc4dfc12176ffd869a0c5eed26.tar.gz
fix errors
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD10
2 files changed, 8 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index bffee91b82f7..9922d6d5df6c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,17 +1,18 @@
pkgbase = dbgate-bin
pkgdesc = Database manager for MySQL, PostgreSQL, SQL Server, MongoDB, SQLite and others. Runs under Windows, Linux, Mac or as web application
pkgver = 5.2.6
- pkgrel = 2
+ pkgrel = 3
url = https://dbgate.org/
arch = aarch64
arch = armv7h
arch = x86_64
license = MIT
+ depends = bash
depends = hicolor-icon-theme
depends = electron25
depends = gcc-libs
depends = glibc
- provides = dbgate
+ provides = dbgate=5.2.6
conflicts = dbgate
source = LICENSE::https://raw.githubusercontent.com/dbgate/dbgate/master/LICENSE
source = dbgate.sh
diff --git a/PKGBUILD b/PKGBUILD
index 59455edbc011..1130c519790c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,16 +1,16 @@
-# Contributor: aulonsal <seraur at aulonsal dot com>
# Maintainer: zxp19821005 <zxp19821005 at 163 dot com>
-pkgname="dbgate-bin"
+# Contributor: aulonsal <seraur at aulonsal dot com>
+pkgname=dbgate-bin
pkgver=5.2.6
-pkgrel=2
+pkgrel=3
pkgdesc="Database manager for MySQL, PostgreSQL, SQL Server, MongoDB, SQLite and others. Runs under Windows, Linux, Mac or as web application"
arch=('aarch64' 'armv7h' 'x86_64')
url="https://dbgate.org/"
_githuburl="https://github.com/dbgate/dbgate"
license=('MIT')
+provides=("${pkgname%-bin}=${pkgver}")
conflicts=("${pkgname%-bin}")
-provides=("${pkgname%-bin}")
-depends=('hicolor-icon-theme' 'electron25' 'gcc-libs' 'glibc')
+depends=('bash' 'hicolor-icon-theme' 'electron25' 'gcc-libs' 'glibc')
source_aarch64=("${pkgname%-bin}-${pkgver}-aarch64.AppImage::${_githuburl}/releases/download/v${pkgver}/${pkgname%-bin}-${pkgver}-linux_arm64.AppImage")
source_armv7h=("${pkgname%-bin}-${pkgver}-armv7h.AppImage::${_githuburl}/releases/download/v${pkgver}/${pkgname%-bin}-${pkgver}-linux_armv7l.AppImage")
source_x86_64=("${pkgname%-bin}-${pkgver}-x86_64.AppImage::${_githuburl}/releases/download/v${pkgver}/${pkgname%-bin}-${pkgver}-linux_x86_64.AppImage")