summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-03-05 12:33:44 +0100
committerRémi Verschelde <rverschelde@gmail.com>2017-03-05 12:33:44 +0100
commit19aa428a6c72a8cc525898f5b855d5389da03870 (patch)
treee1f532550a8c3b103dd255f427cfd552fb39d34d /Makefile
parentac5045acd5ee5facfea596a38bc8c41e44ce3b23 (diff)
parentf271da656cf19b917c28e8b04e031be55f8bc22d (diff)
downloadmgaonline-19aa428a6c72a8cc525898f5b855d5389da03870.tar
mgaonline-19aa428a6c72a8cc525898f5b855d5389da03870.tar.gz
mgaonline-19aa428a6c72a8cc525898f5b855d5389da03870.tar.bz2
mgaonline-19aa428a6c72a8cc525898f5b855d5389da03870.tar.xz
mgaonline-19aa428a6c72a8cc525898f5b855d5389da03870.zip
Merge branch 'topic/systray'
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 4 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index d0b19192..d5cdc508 100644
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,6 @@ SUBDIRS = po polkit
PREFIX = /
DATADIR = $(PREFIX)/usr/share
ICONSDIR = $(DATADIR)/icons
-PIXDIR = $(DATADIR)/$(NAME)
LIBEXECDIR = $(PREFIX)/usr/libexec
BINDIR = $(PREFIX)/usr/bin
FBLIBDIR = $(PREFIX)/usr/lib/libDrakX/drakfirsttime
@@ -30,15 +29,14 @@ clean:
find . -name '*~' | xargs rm -f
install: all
- install -d $(PREFIX)/usr/{bin,libexec,share/{mime/packages,$(NAME)/pixmaps,autostart,gnome/autostart,icons/{mini,large}},lib/libDrakX/drakfirsttime}
+ install -d $(PREFIX)/usr/{bin,libexec,share/{mime/packages,autostart,gnome/autostart,icons},lib/libDrakX/drakfirsttime}
install -m755 $(MGAUPDATE) $(MGAAPPLET)-config $(MGAAPPLET)-upgrade-helper $(LIBEXECDIR)
install -m755 $(MGAAPPLET) $(MGAAPPLET)-update-checker $(BINDIR)
install -d $(SYSCONFDIR)
install -m644 mgaapplet.conf $(SYSCONFDIR)/mgaapplet
- install -m644 icons/$(NAME)16.png $(ICONSDIR)/mini/$(NAME).png
- install -m644 icons/$(NAME)32.png $(ICONSDIR)/$(NAME).png
- install -m644 icons/$(NAME)48.png $(ICONSDIR)/large/$(NAME).png
- install -m644 pixmaps/*.png $(PIXDIR)/pixmaps
+ cp -a icons/hicolor $(ICONSDIR)
+ # Compat symlink, to be sure we don't break external apps relying on this icon
+ ln -s $(ICONSDIR)/hicolor/32x32/apps/$(NAME).png $(ICONSDIR)/$(NAME).png
perl -pi -e "s/version = 1/version = '$(VERSION)'/" mgaonline.pm
install -m644 mgaonline.pm $(FBLIBDIR)
install -m644 mgaapplet.pm $(FBLIBDIR)