commit 24ebf2c5a59f02e162152117d7c8507c07aef327 Author: tacheometry <39647014+tacheometry@users.noreply.github.com> Date: Tue Mar 21 04:19:51 2023 +0200 Initial commit 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 + +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 +}