Tomb/share/Makefile.am

36 lines
1.3 KiB
Makefile
Raw Normal View History

2011-02-20 18:37:55 +00:00
Applicationsdir = $(datadir)/applications
Applications_DATA = tomb.desktop
AppRegdir = $(datadir)/application-registry
AppReg_DATA = tomb.applications
MimeInfodir = $(datadir)/mime-info
MimeInfo_DATA = tomb.keys tomb.mime
2011-01-19 18:47:52 +00:00
2011-01-29 13:45:03 +00:00
Menudir = $(datadir)/menu
Menu_DATA = tomb
2011-02-20 18:37:55 +00:00
Iconsdir = $(datadir)/icons
2011-01-19 18:47:52 +00:00
Icons_DATA = monmort.png
2011-02-20 18:37:55 +00:00
AppInstIcondir = $(datadir)/app-install/icons
AppInstIcon_DATA = monmort.png
AppInstDeskdir = $(datadir)/app-install/desktop
AppInstDesk_DATA = tomb.desktop
2011-01-19 18:47:52 +00:00
install-data-hook:
@echo "installing mime type"
@if ! [ -n `which xdg-mime` ]; then xdg-mime install dyne-tomb.xml; fi
2011-02-20 18:37:55 +00:00
@mkdir -p $(prefix)/lib/mime/packages
@echo "application/x-tomb-volume; tomb-open '%s'; priority=8" > $(prefix)/lib/mime/packages/tomb
@echo "installing icons";
2011-02-24 23:10:09 +00:00
@if ! [ -n `which xdg-icon-resource` ]; then \
xdg-icon-resource install --context mimetypes --size 32 ../src/monmort.xpm monmort; \
xdg-icon-resource install --size 32 ../src/monmort.xpm dyne-monmort; fi
mkdir -p $(datadir)/themes/tomb/gtk-2.0-key
sed -e 's@\%prefix\%@'"$(datadir)"'@' gtkrc-2.0 > $(datadir)/themes/tomb/gtk-2.0-key/gtkrc
@if ! [ -n `which update-desktop-database` ]; then echo update-desktop-database; update-desktop-database; fi
2011-02-20 18:37:55 +00:00
@if ! [ -n `which update-menus` ]; then echo update-menus; update-menus; fi
@if ! [ -n `which update-mime` ]; then echo update-mime; update-mime; fi