Alpaca/PKGBUILD
2024-09-11 22:49:25 -06:00

23 lines
574 B
Bash

# Maintainer: Jeffry Samuel Eduarte Rojas <jeffrysamuer@gmail.com>
pkgname=com.jeffser.Alpaca
pkgver=2.0.1
pkgrel=1
pkgdesc="An Ollama client made with GTK4 and Adwaita"
arch=('any')
url="https://github.com/jeffser/Alpaca"
license=('GPL-3.0')
depends=('python-requests' 'python-pillow' 'python-pypdf' 'python-pytube' 'python-html2text')
source=("git+https://github.com/jeffser/Alpaca.git")
md5sums=('SKIP')
build() {
cd "$srcdir/Alpaca"
meson setup _build
meson compile -C _build
}
package() {
cd "$srcdir/Alpaca/_build"
sudo meson install --destdir="$pkgdir"
}