summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b40fd22969cce62541e90d98208e851f75a26714 (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: TheBitStick <thebitstick@tfwno.gf>
pkgname=journable-git
pkgver=0.0.1
pkgrel=1
pkgdesc="A simple bullet journal."
arch=(any)
url="https://gitlab.gnome.org/BjoernDaase/journable"
license=('GPL3')
depends=('gtk3' 'appstream-glib' 'python')
makedepends=('git' 'meson' 'cmake')
checkdepends=()
optdepends=()
provides=(${pkgname%-git})
conflicts=(${pkgname%-git})
backup=()
options=()
source=("git+${url}.git")
md5sums=('SKIP')

build() {
  meson --prefix=/usr --buildtype=plain journable build
  ninja -C build
}

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