summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a5fa1ce662ad6372a635ff77a47380642154c08d (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
# Maintainer  shtrophic   <aur at shtrophic dot net>
# Contributor epsilonKNOT <epsilon.aur@epsilonKNOT.xyz>

pkgbase=imsg-compat
pkgname=imsg-compat
pkgver=8.0.0
pkgrel=1
pkgdesc="linux port of OpenBSD imsg utilities"
url="https://github.com/bsd-ac/imsg-compat"
license=('ISC')
arch=('any')
makedepends=(meson)
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/bsd-ac/imsg-compat/archive/${pkgver}.tar.gz" )
sha256sums=('5e87b828af6c42a1234044ff94b2948bd5802c161c837adb1dece5cfe875aefd')

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

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

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