first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

3
src/sessreg/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/sessreg/changes.md Normal file
View File

@ -0,0 +1,2 @@
# 1.1.3
First version

16
src/sessreg/pkg.sh Normal file
View File

@ -0,0 +1,16 @@
NAME="sessreg"
DESC="Register X sessions in system utmp/utmpx databases"
VERSION="1.1.3"
FILES=("https://www.x.org/pub/individual/app/sessreg-$VERSION.tar.xz")
HASHES=("05423bb42a006a6eb2c36ba10393de23")
DEPENDS=()
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
./configure $XORG_CONFIG
make && make DESTDIR=${ROOTDIR} install
cd .. && rm -rf $NAME-$VERSION
}