blob: 4e318a0cd7638a5f268a9f153c76594d0ba41def (
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
|
# Description: journalctl from systemd
# URL: https://github.com/systemd/systemd
# Maintainer: Erich Eckner, crux at eckner dot net
# Depends on: meson lz4
name=journalctl
version=243
release=1
source=("https://github.com/systemd/systemd-stable/archive/v$version.tar.gz")
build() {
find systemd-stable-${version} \
-type f \
-exec sed -i "s/'debug'/'debugg'/g" {} \;
meson systemd-stable-${version} build -Dlz4=true
ninja -C build
ninja -C build man/journalctl.1
ldd build/journalctl
install -Dm755 build/journalctl "$PKG/bin/journalctl"
install -Dm644 build/man/journalctl.1 "$PKG/usr/share/man/man1/journalctl.1"
install -Dm755 build/src/shared/libsystemd-shared-$version.so "$PKG/lib/libsystemd-shared-$version.so"
}
|