Initial commit

This commit is contained in:
tacheometry 2023-03-21 04:19:51 +02:00
commit 24ebf2c5a5
No known key found for this signature in database
GPG key ID: 9C2CD2E884CA9C4A
2 changed files with 35 additions and 0 deletions

15
.SRCINFO Normal file
View file

@ -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

20
PKGBUILD Normal file
View file

@ -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
}