diff options
-rw-r--r-- | Makefile | 18 | ||||
-rw-r--r-- | README.md | 1 |
2 files changed, 9 insertions, 10 deletions
@@ -54,23 +54,21 @@ clean: install: # for binary file script isodumper on /usr/bin + mkdir -p $(DESTDIR)$(BINDIR) install -m 755 isodumper $(DESTDIR)$(BINDIR) - # for binary file isodumper on /usr/bin/ - # to have authentication with polkit (use for mageia policy) - #mkdir -p $(DESTDIR)$(BINDIR) - #install -m 755 polkit/isodumper $(DESTDIR)$(BINDIR) - - # for backend magiback listening DBus on /usr/bin/ + # for backend magiback listening DBus on /usr/bin/ install -m 755 backend/magiback $(DESTDIR)$(BINDIR) - # for DBus conf file on /usr/dbus-1/system-d + # for DBus conf file on /etc/dbus-1/system-d # to launch magiback on request - install -m 644 backend/org.mageia.Magiback.conf ${DBUSDIR}/system.d + mkdir -p $(DESTDIR)${DBUSDIR}/system.d + install -m 644 backend/org.mageia.Magiback.conf $(DESTDIR)${DBUSDIR}/system.d - # for DBus conf file on /usr/dbus-1/system-d + # for DBus conf file on /usr/share/dbus-1/system-d # to provide objects and interfaces - install -m 644 backend/org.mageia.magiback.service ${DBUSDIR}/system-services + mkdir -p $(DESTDIR)${DATADIR}/dbus-1/system-services + install -m 644 backend/org.mageia.magiback.service $(DESTDIR)${DATADIR}/dbus-1/system-services # for policy file isodumper on /usr/share/polkit-1/actions/ # to have authentication with polkit (use for mageia policy) @@ -16,6 +16,7 @@ Requirements - python3 - python3-dbus - python3-parted +- python3-pydbus - udisks2 - libyui and declanation of ncurses, gtk or Qt - libyui-mga |