New package: lidm-1.2.3

This commit is contained in:
grialion 2025-07-05 20:35:04 +02:00 committed by Duncan Overbruck
parent 5038c6d658
commit 9a5efab3e6
3 changed files with 29 additions and 0 deletions

5
srcpkgs/lidm/files/lidm/finish Executable file
View file

@ -0,0 +1,5 @@
#!/bin/sh
[ -r conf ] && . ./conf
exec utmpset -w ${TTY:-tty7}

7
srcpkgs/lidm/files/lidm/run Executable file
View file

@ -0,0 +1,7 @@
#!/bin/sh
[ -r conf ] && . ./conf
exec setsid ${GETTY:-agetty} ${GETTY_ARGS} \
"${TTY:-tty7}" "${TERM_NAME:-linux}" \
-n -l "${EXEC_PATH:-/bin/lidm}" -o 7

17
srcpkgs/lidm/template Normal file
View file

@ -0,0 +1,17 @@
# Template file for 'lidm'
pkgname=lidm
version=1.2.3
revision=1
build_style=gnu-makefile
conf_files="/etc/lidm.ini"
makedepends="pam-devel"
short_desc="Fully colorful customizable TUI display manager made in C"
maintainer="grialion <grialion@grial.dev>"
license="GPL-3.0-or-later"
homepage="https://github.com/javalsai/lidm"
distfiles="https://github.com/javalsai/lidm/archive/v${version}.tar.gz"
checksum=1ce414b510c5bbc3e32ea882f915b4d3958cb82eb1fbb5cf33e62f69c844bf93
post_install() {
vsv lidm
}