Published: 1.0.0

This commit is contained in:
Rafael Baboni Dominiquini 2025-12-06 01:05:27 -03:00
commit 63497bd5de
4 changed files with 83 additions and 0 deletions

36
.SRCINFO Normal file
View file

@ -0,0 +1,36 @@
pkgbase = loopi-bin
pkgdesc = A visual automation builder that lets you create, schedule, and run automations with secure credential management
pkgver = 1.0.0
pkgrel = 1
url = https://github.com/Dyan-Dev/loopi
arch = x86_64
license = MIT
depends = glibc
depends = gcc-libs
depends = glib2
depends = libxfixes
depends = libxdamage
depends = nspr
depends = dbus
depends = expat
depends = gtk3
depends = libxrandr
depends = libxext
depends = libxcomposite
depends = libxkbcommon
depends = nss
depends = libcups
depends = mesa
depends = systemd-libs
depends = cairo
depends = alsa-lib
depends = pango
depends = at-spi2-core
depends = libx11
depends = libxcb
provides = loopi
conflicts = loopi
source_x86_64 = loopi-x86_64-1.0.0.deb::https://github.com/Dyan-Dev/loopi/releases/download/v1.0.0/loopi_1.0.0_amd64.deb
sha256sums_x86_64 = f675119f2cc97a8486f21536df240e573038162974f0fd6b0713086f88111a67
pkgname = loopi-bin

5
.gitignore vendored Normal file
View file

@ -0,0 +1,5 @@
*
!.nvchecker.toml
!.gitignore
!PKGBUILD
!.SRCINFO

5
.nvchecker.toml Normal file
View file

@ -0,0 +1,5 @@
[loopi-bin]
source = "github"
github = "Dyan-Dev/loopi"
use_latest_release = true
prefix = "v"

37
PKGBUILD Normal file
View file

@ -0,0 +1,37 @@
# Maintainer: Rafael Dominiquini <rafaeldominiquini at gmail dot com>
# https://github.com///releases/download/v1.0.0/loopi_1.0.0_amd64.deb
_pkgauthor=Dyan-Dev
_pkgname=loopi
pkgname=${_pkgname}-bin
pkgdesc="A visual automation builder that lets you create, schedule, and run automations with secure credential management"
pkgver=1.0.0
pkgrel=1
_pkgvername=v${pkgver}
arch=('x86_64')
_barch=('amd64')
url="https://github.com/${_pkgauthor}/${_pkgname}"
_urlraw="https://raw.githubusercontent.com/${_pkgauthor}/${_pkgname}/${_pkgvername}"
license=('MIT')
provides=("${_pkgname}")
conflicts=("${_pkgname}")
depends=('glibc' 'gcc-libs' 'glib2' 'libxfixes' 'libxdamage' 'nspr' 'dbus' 'expat' 'gtk3' 'libxrandr' 'libxext' 'libxcomposite' 'libxkbcommon' 'nss' 'libcups' 'mesa' 'systemd-libs' 'cairo' 'alsa-lib' 'pango' 'at-spi2-core' 'libx11' 'libxcb')
# source=("LICENSE-${pkgver}::${_urlraw}/LICENSE"
# "README-${pkgver}.md::${_urlraw}/README.md")
source_x86_64=("${_pkgname}-${arch[0]}-${pkgver}.deb::${url}/releases/download/${_pkgvername}/${_pkgname}_${pkgver}_${_barch[0]}.deb")
sha256sums_x86_64=('f675119f2cc97a8486f21536df240e573038162974f0fd6b0713086f88111a67')
package() {
cd "${pkgdir}"
# this extracts all into the pkgdir
tar -xf "${srcdir}/data.tar.zst"
}