This commit is contained in:
tacheometry 2024-04-23 20:25:02 +03:00
parent d59771d0f2
commit de1b1158ec
No known key found for this signature in database
GPG key ID: 9C2CD2E884CA9C4A
3 changed files with 9 additions and 9 deletions

View file

@ -1,6 +1,6 @@
pkgbase = surrealist-bin
pkgdesc = Powerful graphical SurrealDB query playground and database explorer
pkgver = 1.11.8
pkgver = 2.0.0
pkgrel = 1
url = https://surrealist.starlane.studio
arch = x86_64
@ -9,7 +9,7 @@ pkgbase = surrealist-bin
depends = gtk3
provides = surrealist
conflicts = surrealist
source = https://github.com/StarlaneStudios/Surrealist/releases/download/v1.11.8/surrealist-v1.11.8-linux.deb
source = https://github.com/surrealdb/surrealist/releases/download/surrealist-v2.0.0/surrealist_2.0.0_amd64.deb
md5sums = SKIP
pkgname = surrealist-bin

2
.gitignore vendored
View file

@ -1,3 +1,3 @@
pkg/
src/
surrealist-*
surrealist*

View file

@ -1,20 +1,20 @@
# Maintainer: tacheometrist <tacheometrist@gmail.com>
# Maintainer: tacheometrist <aur@tacheometrist.dev>
pkgname=surrealist-bin
pkgver=1.11.8
pkgver=2.0.0
pkgrel=1
pkgdesc="Powerful graphical SurrealDB query playground and database explorer"
pkgdesc="Surrealist is the ultimate way to visually manage your SurrealDB database"
arch=("x86_64")
url="https://surrealist.starlane.studio"
url="https://surrealdb.com/docs/surrealist"
license=("MIT")
groups=()
depends=("webkit2gtk" "gtk3")
provides=("surrealist")
conflicts=("surrealist")
source=("https://github.com/StarlaneStudios/Surrealist/releases/download/v${pkgver//_/-}/surrealist-v${pkgver//_/-}-linux.deb")
source=("https://github.com/surrealdb/surrealist/releases/download/surrealist-v${pkgver//_/-}/surrealist_${pkgver//_/-}_amd64.deb")
md5sums=("SKIP")
package() {
bsdtar -O -xf *.deb data.tar.gz | bsdtar -C "${pkgdir}" -xJf -
echo "Comment=Powerful graphical SurrealDB query playground and database explorer" >> ${pkgdir}/usr/share/applications/surrealist.desktop
echo "Comment=Surrealist is the ultimate way to visually manage your SurrealDB database" >> ${pkgdir}/usr/share/applications/surrealist.desktop
}