summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: bcad4cf28c6f6f8ac08292b30d5c32f8e3684089 (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
# Maintainer: Archisman Panigrahi <apandada1 at gmail dot com>

pkgname=calligraphy
_pkgname=Calligraphy
pkgver=1.2.0
pkgrel=1
pkgdesc='Turn text into ASCII banners'
arch=('any')
url='https://gitlab.gnome.org/GeopJr/Calligraphy/'
license=('GPL3')
depends=('gtk4' 'libadwaita' 'python-pyfiglet')
makedepends=('appstream-glib' 'meson' 'git')
source=("$url/-/archive/v$pkgver/$_pkgname-v$pkgver.tar.gz")
sha256sums=('9cf40500bb5ccee09f8321de3f31f1117c32313b98368fca7be60791b44c6983')

build() {
  arch-meson $_pkgname-v$pkgver build
  meson compile -C build
}

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

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