blob: 709320d0b733efdb4ef56d047c013d03f07e9ac7 (
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.1.1.241102
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."
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'
'sqlite3mc'
)
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=('1f03bf4bd98f04be556a3bd3aa306524ec07380852412374168a2777333892f5'
'977d35e6b3e7421ea9bdddede29b62ca011134e59388207d9bb5f1f1f8286c14')
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}"
}
|