blob: 5b6f2fcb276f90f01f3693358e8df6eca0f77040 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# Maintainer: goodroot <hyprwhspr@goodroot.ca>
pkgname=hyprwhspr
pkgver=1.26.1
pkgrel=1
pkgdesc="Fast, local speech-to-text for Arch/Omarchy"
arch=('x86_64')
url="https://github.com/goodroot/hyprwhspr"
license=('MIT')
makedepends=()
depends=(
'cmake'
'git'
'python'
'python-pip'
'python-setuptools'
'python-sounddevice'
'python-numpy'
'python-scipy'
'python-evdev'
'python-pyperclip'
'python-requests'
'python-psutil'
'python-pyudev'
'python-rich'
'python-gobject'
'python-pulsectl'
'python-dbus'
'ydotool'
'pipewire' 'pipewire-alsa' 'pipewire-pulse'
)
optdepends=('gtk4-layer-shell: for themed Mic-OSD visualization')
install=$pkgname.install
source=("$pkgname-$pkgver.tar.gz::https://github.com/goodroot/$pkgname/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('1aec6a03b7fbe1cb7290fe72ecd18de6b97eb301358d284298a92c0e37e7c6fa')
build() {
cd "$srcdir/$pkgname-$pkgver"
# nothing to build; user runs 'hyprwhspr setup' post-install
}
package() {
cd "$srcdir/$pkgname-$pkgver"
# Payload into /usr/lib keeps repo layout intact
install -d "$pkgdir/usr/lib/$pkgname"
cp -r lib bin config share README.md LICENSE requirements.txt "$pkgdir/usr/lib/$pkgname"
# Note: scripts directory removed - functionality moved to CLI commands
# Make sure main launcher is executable
if [ -f "$pkgdir/usr/lib/$pkgname/bin/hyprwhspr" ]; then
chmod 755 "$pkgdir/usr/lib/$pkgname/bin/hyprwhspr"
fi
# Install systemd user service
install -Dm644 "config/systemd/hyprwhspr.service" \
"$pkgdir/usr/lib/systemd/user/hyprwhspr.service"
# Create wrapper that uses the repo's bin/hyprwhspr with fixed paths
install -d "$pkgdir/usr/bin"
sed 's|PACKAGE_ROOT="$(dirname "$SCRIPT_DIR")"|PACKAGE_ROOT="/usr/lib/hyprwhspr"|' \
"$srcdir/$pkgname-$pkgver/bin/$pkgname" > "$pkgdir/usr/bin/$pkgname"
chmod 755 "$pkgdir/usr/bin/$pkgname"
# Docs & license
install -d "$pkgdir/usr/share/doc/$pkgname" "$pkgdir/usr/share/licenses/$pkgname"
install -m644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
install -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|