summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3cd0968ed300dcb60d6102080aaa95e32b31cd46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pkgname=wtmpdb
pkgver=0.72.0
pkgrel=1
pkgdesc="Login/logout event log (SQLite-based replacement of /var/log/wtmp)"
arch=(x86_64)
depends=(audit gcc-libs pam sqlite libsystemd)
url=https://github.com/thkukuk/wtmpdb
source=(git+https://github.com/thkukuk/wtmpdb#tag=v$pkgver)
sha256sums=(SKIP)

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

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