This commit is contained in:
goodroot 2025-10-08 17:32:23 -07:00
parent ce91dab850
commit eb8352cc44
4 changed files with 50 additions and 5 deletions

View file

@ -1,6 +1,6 @@
pkgbase = hyprwhspr
pkgdesc = Native Whisper speech-to-text for Arch/Omarchy with Waybar integration
pkgver = 1.3.4
pkgver = 1.3.5
pkgrel = 1
url = https://github.com/goodroot/hyprwhspr
install = hyprwhspr.install
@ -29,7 +29,7 @@ pkgbase = hyprwhspr
optdepends = nvidia-utils: For GPU acceleration
optdepends = cuda: For GPU acceleration
optdepends = whisper.cpp: Use system build instead of building locally in setup step
source = hyprwhspr-1.3.4.tar.gz::https://github.com/goodroot/hyprwhspr/archive/refs/tags/v1.3.4.tar.gz
sha256sums = 5a027d9fdbe89cc213f913ae153ab27dcfc5e4bac03da31a22d2a21495373017
source = hyprwhspr-1.3.5.tar.gz::https://github.com/goodroot/hyprwhspr/archive/refs/tags/v1.3.5.tar.gz
sha256sums = 5e224fcb1afe5f699b85d6e8be08b66e39fe421a568f4e7c2022d2ade5e4cd4e
pkgname = hyprwhspr

45
.gitignore vendored Normal file
View file

@ -0,0 +1,45 @@
# AUR package build artifacts
*.pkg.tar.zst
*.pkg.tar.xz
*.pkg.tar.gz
*.pkg.tar.bz2
*.pkg.tar.lzo
*.pkg.tar.lrz
*.pkg.tar.lz4
*.pkg.tar.zst.sig
# Source tarballs (downloaded during build)
*.tar.gz
*.tar.xz
*.tar.bz2
*.zip
# Build directories
pkg/
src/
*.orig
# makepkg logs
makepkg.log
# Temporary files
*.tmp
*.temp
*~
# Python cache (if any)
__pycache__/
*.pyc
*.pyo
*.pyd
# Editor files
.vscode/
.idea/
*.swp
*.swo
*~
# OS files
.DS_Store
Thumbs.db

View file

@ -1,7 +1,7 @@
# Maintainer: goodroot <hyprwhspr@goodroot.ca>
pkgname=hyprwhspr
pkgver=1.3.4
pkgver=1.3.5
pkgrel=1
pkgdesc="Native Whisper speech-to-text for Arch/Omarchy with Waybar integration"
arch=('x86_64')
@ -33,7 +33,7 @@ optdepends=(
)
install=$pkgname.install
source=("$pkgname-$pkgver.tar.gz::https://github.com/goodroot/$pkgname/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('5a027d9fdbe89cc213f913ae153ab27dcfc5e4bac03da31a22d2a21495373017')
sha256sums=('5e224fcb1afe5f699b85d6e8be08b66e39fe421a568f4e7c2022d2ade5e4cd4e')
build() {
cd "$srcdir/$pkgname-$pkgver"

Binary file not shown.