Initial release 1.3.0

This commit is contained in:
cyprien 2026-02-06 23:24:30 +01:00
commit 7fe58a2948
2 changed files with 42 additions and 0 deletions

17
.SRCINFO Normal file
View file

@ -0,0 +1,17 @@
pkgbase = hugvi
pkgdesc = A note-taking app for programmers with markdown syntax (Pre-built binary)
pkgver = 1.3.0
pkgrel = 1
url = https://github.com/cbdefontenay/hugvi
arch = x86_64
license = MIT
depends = gtk3
depends = webkit2gtk-4.1
depends = libnm
depends = hicolor-icon-theme
provides = hugvi
conflicts = hugvi
source_x86_64 = https://github.com/cbdefontenay/hugvi/releases/download/Release/Hugvi_1.3.0_amd64.deb
sha256sums_x86_64 = SKIP
pkgname = hugvi

25
PKGBUILD Normal file
View file

@ -0,0 +1,25 @@
# Maintainer: cyprien <ton-email>
pkgname=hugvi
pkgver=1.3.0
pkgrel=1
pkgdesc="A note-taking app for programmers with markdown syntax (Pre-built binary)"
arch=('x86_64')
url="https://github.com/cbdefontenay/hugvi"
license=('MIT')
depends=('gtk3' 'webkit2gtk-4.1' 'libnm' 'hicolor-icon-theme')
provides=('hugvi')
conflicts=('hugvi')
source_x86_64=("${url}/releases/download/Release/Hugvi_${pkgver}_amd64.deb")
sha256sums_x86_64=('SKIP')
prepare() {
# On extrait le .deb
bsdtar -xf "Hugvi_${pkgver}_amd64.deb"
# On extrait l'archive data (qui contient /usr)
bsdtar -xf data.tar.*
}
package() {
cp -r usr/ "$pkgdir/"
}