4c2cc8b588
The following vars can be used for this: - system_accounts="foo blah" - foo_homedir, foo_shell, foo_descr, foo_groups. --HG-- extra : convert_revision : bc7d002e00abc5c84f83a3716a8ecf97f9c9ff24
21 lines
482 B
Makefile
21 lines
482 B
Makefile
include ../vars.mk
|
|
|
|
TRIGGERS= gtk-icon-cache info-files mimedb register-shell
|
|
TRIGGERS+= xml-catalog gtk-immodules initramfs-tools openrc-service
|
|
TRIGGERS+= update-desktopdb gtk-pixbuf-loaders pango-modules x11-fonts
|
|
TRIGGERS+= system-accounts
|
|
|
|
.PHONY: all
|
|
all:
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
|
|
.PHONY: install
|
|
install:
|
|
install -d $(DESTDIR)$(SHAREDIR)/triggers
|
|
install -m 755 $(TRIGGERS) $(DESTDIR)$(SHAREDIR)/triggers
|
|
|
|
.PHONY: uninstall
|
|
uninstall:
|
|
-rm -rf $(DESTDIR)$(SHAREDIR)/triggers
|