summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authortacheometry2023-03-21 04:19:51 +0200
committertacheometry2023-03-21 04:19:51 +0200
commit24ebf2c5a59f02e162152117d7c8507c07aef327 (patch)
tree5e4f34cf5349f37b48e8c81bcfeaa8fcea5086e7
downloadaur-24ebf2c5a59f02e162152117d7c8507c07aef327.tar.gz
Initial commit
-rw-r--r--.SRCINFO15
-rw-r--r--PKGBUILD20
2 files changed, 35 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..e520ef18ac57
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+pkgbase = surrealist-bin
+ pkgdesc = Powerful graphical SurrealDB query playground and database explorer
+ pkgver = 1.6.2
+ pkgrel = 1
+ url = https://surrealist.starlane.studio
+ arch = x86_64
+ license = MIT
+ depends = webkit2gtk
+ depends = gtk3
+ provides = surrealist
+ conflicts = surrealist
+ source = https://github.com/StarlaneStudios/Surrealist/releases/download/v1.6.2/surrealist-v1.6.2-linux.deb
+ md5sums = SKIP
+
+pkgname = surrealist-bin
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..b86d12c2500b
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,20 @@
+# Maintainer: tacheometrist <tacheometrist@gmail.com>
+
+pkgname=surrealist-bin
+pkgver=1.6.2
+pkgrel=1
+pkgdesc="Powerful graphical SurrealDB query playground and database explorer"
+arch=("x86_64")
+url="https://surrealist.starlane.studio"
+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")
+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
+}