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/lightdm-gtk-greeter/.gitignore vendored Normal file
View File

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

View File

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

View File

@ -0,0 +1,26 @@
NAME="lightdm-gtk-greeter"
DESC="GTK greeter for lightdm"
VERSION="2.0.8"
FILES=("https://github.com/Xubuntu/lightdm-gtk-greeter/releases/download/lightdm-gtk-greeter-$VERSION/lightdm-gtk-greeter-$VERSION.tar.gz")
HASHES=("373c73c67367df511eb544e09a2da281")
DEPENDS=("gtk3" "lightdm")
PACKAGE() {
tar xf $NAME-$VERSION.tar.gz
cd $NAME-$VERSION
./configure --prefix=/usr \
--libexecdir=/usr/lib/lightdm \
--sbindir=/usr/bin \
--sysconfdir=/etc \
--with-libxklavier \
--enable-kill-on-sigterm \
--disable-libido \
--disable-libindicator \
--disable-static \
--disable-maintainer-mode \
--docdir=/usr/share/doc/lightdm-gtk-greeter-$ROOTDIR
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -r $NAME-$VERSION
}