summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 0db03ca75ac34fb638a92edd5a1edb1aba38ee93 (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: Philip Goto <philip.goto@gmail.com>

pkgname=drawing
pkgver=0.2
pkgrel=1
pkgdesc="Drawing application for the GNOME desktop"
url="https://github.com/maoschanz/drawing"
arch=(any)
license=(GPL)
depends=(gtk3 python)
makedepends=(meson python)
provides=(com.github.maoschanz.Drawing)
source=("https://github.com/maoschanz/drawing/archive/${pkgver}.tar.gz")
sha256sums=('83873fcda8102f51c9e5ecd17e95086d0e9ac8196bcf9e202d6e30c0c926fa35')

build() {
    arch-meson drawing-${pkgver} build
    ninja -C build
}

#check() {
#    meson test -C build
#}

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