blob: 13b873889dfef5dc079958f83eafac37373f9bdc (
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
|
#
# Generated by pypi2aur from pypi package gurush
# Date 2025-05-14 07:21:51
#
pkgname=gurush
_origpkgname=gurush
pkgver=0.1.18
pkgrel=1
pkgdesc="Linux Shell AI Agent."
arch=("x86_64")
url='https://pypi.org/project/gurush/'
license=("MIT")
depends=(
"python"
"confz"
"python-inquirerpy"
"python-rich"
"python-term-image"
"python-langchain-openai"
"python-langchain"
"python-openai"
"python-tiktoken"
)
makedepends=(
"python-build"
"python-installer"
"python-wheel"
"python-setuptools"
"python-hatchling"
)
source=("https://files.pythonhosted.org/packages/9f/7a/6d33b7c99c1eab31b6b82f897d5096111fa445ec5d4d74528be8ccc2c692/gurush-0.1.18.tar.gz")
sha256sums=("fbd256a34f5b7494a966c6577361456f6f019d6c9b6423ab769265674be8dd1a")
package() {
cd "${_origpkgname}-${pkgver}" || exit
python -m build --wheel --no-isolation
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
# vim:set ts=2 sw=2 et:
|