blob: 58c15d7b4020cdbe05ff372afe9e08642cfe0ab8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Maintainer: zxp19821005 <zxp19821005 at 163 dot com>
_pkgname=kangaroo
pkgname="${_pkgname}-max-bin"
pkgver=6.98.1.0330
pkgrel=1
pkgdesc="A SQL client and admin tool for popular databases(SQLite/MySQL/PostgreSQL/...),support table design,query,model,sync,export/import etc,focus on comfortable,fun and developer friendly.(Prebuilt version)"
arch=('x86_64')
url="https://www.datatable.online"
_ghurl="https://github.com/dbkangaroo/kangaroo"
license=('LicenseRef-custom')
provides=("${pkgname%-max-bin}=${pkgver}")
conflicts=(
"${pkgname%-bin}"
"${pkgname%-max-bin}"
)
depends=(
'gtk4'
'json-glib'
'hiredis'
'mariadb-libs'
'postgresql-libs'
'uchardet'
'libarchive'
'qrencode'
'libadwaita'
'editorconfig-core-c'
'unixodbc'
'gtksourceview5'
'libpanel'
'libgee'
'sqlite'
)
source=(
"${pkgname%-bin}-${pkgver}.pkg.tar.zst::${_ghurl}/releases/download/v${pkgver}/${_pkgname}-multiple-ai-${pkgver}-1-${CARCH}.pkg.tar.zst"
"LICENSE.html::${url}/en/license/service-agreement.html"
)
sha256sums=('0d279f35b16af6cf817b14edd3b77495e7215f8a6c2ce0d711c1b5390aa4f9ed'
'6b45e6330a127cb3e47901997bcc386d4ec43a05d6d5e704dcf8f9b8b21b8364')
package() {
cp -p -a "${srcdir}/usr" "${pkgdir}"
rm -rf "${pkgdir}/usr/share/licenses/${_pkgname}"
install -Dm644 "${srcdir}/LICENSE.html" -t "${pkgdir}/usr/share/licenses/${pkgname}"
}
|