blob: 43b61d8da58394599fb32cc2c5c99c2b94c4304f (
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
|
# Maintainer: begin-theadventure <begin-thecontact.ncncb at dralias dot com>
pkgname=newelle
pkgver=0.9.0
pkgrel=1
pkgdesc="Your Ultimate Virtual Assistant"
url="https://github.com/qwersyk/Newelle"
license=('GPL-3.0-or-later')
arch=('any')
depends=('gtksourceview5' 'libadwaita' 'portaudio' 'python-expandvars' 'python-gobject' 'python-gpt4all'
'python-gtts' 'python-pyaudio' 'python-pygame' 'python-requests' 'python-speechrecognition'
'python-matplotlib' 'python-numpy' 'python-pillow' 'python-pylatexenc')
makedepends=('git' 'meson')
source=("$url/archive/refs/tags/$pkgver.tar.gz")
sha256sums=('fbd10cbca69120a4bd29cfcc9d7688a107e9354e3e410748e5b5870c08400f54')
build() {
arch-meson Newelle-$pkgver build
meson compile -C build
}
check() {
meson test -C build --print-errorlogs || :
}
package() {
meson install -C build --destdir "$pkgdir"
chmod +x "$pkgdir/usr/bin/$pkgname"
cd Newelle-$pkgver
install -Dm644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
install -Dm644 COPYING -t "$pkgdir/usr/share/licenses/$pkgname"
}
|