blob: 04e5441d25e356d87aaf96b97c494c7450c4d37e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Maintainer: Rob Zolkos <rob@zolkos.com>
pkgname=shout
pkgver=1.1.0
pkgrel=1
pkgdesc="Lightweight speech-to-text for Wayland/Hyprland, optimized for AI coding agents"
arch=('any')
url="https://github.com/robzolkos/shout"
license=('MIT')
depends=('whisper.cpp-git' 'whisper.cpp-model-tiny.en' 'wtype' 'pipewire-audio' 'libnotify')
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
sha256sums=('SKIP')
package() {
cd "$srcdir/$pkgname-$pkgver"
install -Dm755 shout "$pkgdir/usr/bin/shout"
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
}
|