summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4445331b2b96607a420ccc4aa8dd329444561547 (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
# Maintainer: 0xMRTT <0xMRTT@proton.me>

pkgname=imaginer-git
_pkgname=Imaginer
pkgver=0.1.3
pkgrel=1
pkgdesc="Imaginer with AI"
arch=('x86_64')
url="https://codeberg.org/Imaginer/Imaginer"
license=('GPL3')
depends=('libadwaita' 'libsoup3' 'python-gobject' 'libportal-gtk4' 'python-lxml' 'python-openai' 'python-requests' 'python-pillow')
makedepends=('git' 'meson' 'blueprint-compiler' 'gobject-introspection' )
checkdepends=('appstream-glib')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=(git+$url.git)
b2sums=('SKIP')

pkgver() {
  cd "${_pkgname%-git}"
  git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
  arch-meson "${_pkgname%-git}" build
  meson compile -C build
}

check() {
  meson test -C build --print-errorlogs || :
}

package() {
  meson install -C build --destdir "$pkgdir"
}