blob: db0a5ec841fe5a9d83a397cefb5f448843c20da2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Maintainer: emmgee
pkgname=omarchy-cmd-dictate
pkgver=1.1.0
pkgrel=1
pkgdesc="Voice-to-text dictation for Hyprland — press to record, press again to transcribe and type"
arch=(any)
url="https://github.com/emmgeede/omarchy-cmd-dictate"
license=(MIT)
depends=(whisper.cpp pipewire wtype wl-clipboard libnotify)
source=("$pkgname-$pkgver.tar.gz::https://github.com/emmgeede/omarchy-cmd-dictate/archive/v$pkgver.tar.gz")
sha256sums=('7e46113b93188c02e0c1f45161f9dec7cd0663846cc93e542071e8a6d2890b60')
package() {
cd "$pkgname-$pkgver"
install -Dm755 omarchy-cmd-dictate "$pkgdir/usr/bin/omarchy-cmd-dictate"
install -Dm644 hyprland-bindings.conf "$pkgdir/usr/share/omarchy-cmd-dictate/hyprland-bindings.conf"
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/omarchy-cmd-dictate/LICENSE"
}
|