summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authortacheometry2024-04-23 20:25:02 +0300
committertacheometry2024-04-23 20:25:02 +0300
commitde1b1158ec9926e364c229c8e1637dbb9532bdb1 (patch)
treea5787cd31f9da19ac054a14642797aec0142e423
parentd59771d0f2ced951cacf6566272145b469f0d950 (diff)
downloadaur-de1b1158ec9926e364c229c8e1637dbb9532bdb1.tar.gz
2.0.0
-rw-r--r--.SRCINFO4
-rw-r--r--.gitignore2
-rw-r--r--PKGBUILD12
3 files changed, 9 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 4b000d8eb735..723add6fa84e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -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
diff --git a/.gitignore b/.gitignore
index 0a6e93db0a33..f746eb2e6587 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,3 @@
pkg/
src/
-surrealist-*
+surrealist*
diff --git a/PKGBUILD b/PKGBUILD
index d2e566219e9f..f8156fe3eb7a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -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
}