mirror of
https://github.com/archlinux/aur.git
synced 2026-03-02 18:11:17 +01:00
Initial commit
This commit is contained in:
commit
24ebf2c5a5
2 changed files with 35 additions and 0 deletions
15
.SRCINFO
Normal file
15
.SRCINFO
Normal 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
20
PKGBUILD
Normal 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
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue