first commit
This commit is contained in:
3
src/lightdm-gtk-greeter/.gitignore
vendored
Normal file
3
src/lightdm-gtk-greeter/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/lightdm-gtk-greeter/changes.md
Normal file
2
src/lightdm-gtk-greeter/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 2.0.8
|
||||
First version
|
26
src/lightdm-gtk-greeter/pkg.sh
Normal file
26
src/lightdm-gtk-greeter/pkg.sh
Normal 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
|
||||
}
|
Reference in New Issue
Block a user