Introduce gdm-settings and its missing dep blueprint-compiler

gdm-settings is pretty useful for customizing GNOME's login screen
without having to dig through configuration files and all those hacks
manually.
This commit is contained in:
Bahar KURT
2025-01-02 01:23:10 +03:00
parent 32179ac30d
commit 257b9ff0dd
6 changed files with 148 additions and 0 deletions
@@ -0,0 +1,17 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Licensed under GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import mesontools
from pisi.actionsapi import get
def setup():
mesontools.configure()
def build():
mesontools.build()
def install():
mesontools.install()