mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-29 20:42:24 +01:00
30 lines
807 B
Plaintext
30 lines
807 B
Plaintext
# Contributor: Michał Polański <michal@polanski.me>
|
|
# Maintainer: Michał Polański <michal@polanski.me>
|
|
pkgname=basu
|
|
pkgver=0.2.0
|
|
pkgrel=0
|
|
pkgdesc="The sd-bus library, extracted from systemd"
|
|
url="https://github.com/emersion/basu"
|
|
license="LGPL-2.1-or-later"
|
|
arch="all"
|
|
makedepends="meson gperf libcap-dev audit-dev"
|
|
subpackages="lib$pkgname:libs $pkgname-dev"
|
|
source="https://github.com/emersion/basu/archive/v$pkgver/basu-$pkgver.tar.gz"
|
|
|
|
build() {
|
|
abuild-meson . output
|
|
meson compile ${JOBS:+-j ${JOBS}} -C output
|
|
}
|
|
|
|
check() {
|
|
meson test --no-rebuild -C output
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install --no-rebuild -C output
|
|
}
|
|
|
|
sha512sums="
|
|
dbc2f72b6e1a880fa41fe6067a38a301f456e4305dae6eb4d465089d7d9c2f629677ba23752b3e1a1fd476cb440db01ef3a218c1c976f38d0058eed584c80165 basu-0.2.0.tar.gz
|
|
"
|