summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9354e80cecdfade525833979b5e0c0873255d105 (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
# Maintainer: fossdd <fossdd@pwned.life>
pkgname=gmobile
pkgver=0.1.0
pkgrel=3
pkgdesc="Functions useful in mobile related, glib based projects"
arch=('x86_64')
url="https://gitlab.gnome.org/World/Phosh/gmobile"
license=('GPL-3.0')
groups=()
depends=('glib2' 'json-glib' 'gobject-introspection')
makedepends=('git' 'meson')
source=("git+$url.git#tag=v$pkgver")
md5sums=('SKIP')

build() {
	arch-meson $pkgname _build
	meson compile -C _build
}

check() {
	meson test -C _build
}

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