Initial commit

This commit is contained in:
Andrea Debernardi 2026-01-28 18:07:34 +01:00
commit e3e9b2fd44
2 changed files with 35 additions and 0 deletions

17
.SRCINFO Normal file
View file

@ -0,0 +1,17 @@
pkgbase = tabularis-bin
pkgdesc = A database manager for developers
pkgver = 0.6.0
pkgrel = 1
url = https://github.com/debba/tabularis
arch = x86_64
license = custom
depends = webkit2gtk-4.1
depends = gtk3
depends = libappindicator-gtk3
depends = openssl
provides = tabularis
conflicts = tabularis
source = tabularis_0.6.0_amd64.deb::https://github.com/debba/tabularis/releases/download/v0.6.0/tabularis_0.6.0_amd64.deb
sha256sums = SKIP
pkgname = tabularis-bin

18
PKGBUILD Normal file
View file

@ -0,0 +1,18 @@
# Maintainer: Debba <debba@example.com>
pkgname=tabularis-bin
_pkgname=tabularis
pkgver=0.6.0
pkgrel=1
pkgdesc="A database manager for developers"
arch=('x86_64')
url="https://github.com/debba/tabularis"
license=('custom')
provides=("${_pkgname}")
conflicts=("${_pkgname}")
depends=('webkit2gtk-4.1' 'gtk3' 'libappindicator-gtk3' 'openssl')
source=("${_pkgname}_${pkgver}_amd64.deb::${url}/releases/download/v${pkgver}/${_pkgname}_${pkgver}_amd64.deb")
sha256sums=('SKIP')
package() {
tar -xf data.tar.zst -C "${pkgdir}"
}