diff options
author | Rodney Dawes <dobey@novell.com> | 2005-05-01 19:26:24 +0000 |
---|---|---|
committer | Rodney Dawes <dobey@novell.com> | 2005-05-01 19:26:24 +0000 |
commit | f61fc8ef256f43d1ada47fb5851f8954fea4cdea (patch) | |
tree | 210b0ad30ed690b63576da561954091987622fb3 /data/icons | |
parent | 893cde9e754b805f1e62c517740919c04d9490e0 (diff) | |
download | mana-f61fc8ef256f43d1ada47fb5851f8954fea4cdea.tar.gz mana-f61fc8ef256f43d1ada47fb5851f8954fea4cdea.tar.bz2 mana-f61fc8ef256f43d1ada47fb5851f8954fea4cdea.tar.xz mana-f61fc8ef256f43d1ada47fb5851f8954fea4cdea.zip |
- Added installation of game data, install required on *nix systems
- Updated desktop file to work better
- Install the desktop file to the standard location
- Install the icon as tmw.png in the standard pixmaps data dir
Diffstat (limited to 'data/icons')
-rw-r--r-- | data/icons/Makefile.am | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/data/icons/Makefile.am b/data/icons/Makefile.am new file mode 100644 index 00000000..26dcd623 --- /dev/null +++ b/data/icons/Makefile.am @@ -0,0 +1,17 @@ + +iconsdir = $(pkgdatadir)/data/icons + +icons_DATA = \ + tmw-icon.ico \ + tmw-icon.png \ + tmw-icon.xpm + +install-data-local: + $(mkinstalldirs) $(DESTDIR)$(datadir)/pixmaps + $(INSTALL) $(srcdir)/tmw-icon.png $(DESTDIR)$(datadir)/pixmaps/tmw.png + +uninstall-local: + rm -f $(DESTDIR)$(datadir)/pixmaps/tmw.png + +EXTRA_DIST = \ + $(icons_DATA) |