diff options
author | Tomasz Paweł Gajc <tpg@mandriva.org> | 2007-12-14 19:32:55 +0000 |
---|---|---|
committer | Tomasz Paweł Gajc <tpg@mandriva.org> | 2007-12-14 19:32:55 +0000 |
commit | 4cf9d89c98f719bd43e96de5c870066cd72a51d8 (patch) | |
tree | bc24f8ccccfa4930917c20872d082243c5893f18 /Makefile | |
parent | 1503d8e68a438d4ac3ff8a859c844795eb89982c (diff) | |
download | config-4cf9d89c98f719bd43e96de5c870066cd72a51d8.tar config-4cf9d89c98f719bd43e96de5c870066cd72a51d8.tar.gz config-4cf9d89c98f719bd43e96de5c870066cd72a51d8.tar.bz2 config-4cf9d89c98f719bd43e96de5c870066cd72a51d8.tar.xz config-4cf9d89c98f719bd43e96de5c870066cd72a51d8.zip |
Add move dirs to trunk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..46dc7ad --- /dev/null +++ b/Makefile @@ -0,0 +1,38 @@ +# tpg@mandriva.org + +prefix=$(prefix) +xfceconfdir=$(sysconfdir)/X11/xdg +xfceprofdir=$(localstatedir)/mandriva/xfce-profiles + +install: + -install -d $(DESTDIR)$(xfceconfdir) + -install -d $(DESTDIR)$(xfceconfdir)/Terminal + install -m 644 common/Terminal/* $(DESTDIR)$(xfceconfdir)/Terminal/ + -install -d $(DESTDIR)$(xfceconfdir)/Thunar + install -m 644 common/Thunar/* $(DESTDIR)$(xfceconfdir)/Thunar/ + -install -d $(DESTDIR)$(xfceconfdir)/autostart + install -m 644 common/autostart/* $(DESTDIR)$(xfceconfdir)/autostart/ + -install -d $(DESTDIR)$(xfceconfdir)/xfce4 + -install -d $(DESTDIR)$(xfceconfdir)/xfce4/desktop + -install -d $(DESTDIR)$(xfceconfdir)/xfce4/notication-deamon-xfce + -install -d $(DESTDIR)$(xfceconfdir)/xfce4/panel + -install -d $(DESTDIR)$(xfceconfdir)/xfce4/volstatus + install -m 644 common/xfce4/desktop/* $(DESTDIR)$(xfceconfdir)/xfce4/desktop/ + install -m 644 common/xfce4/notication-daemon-xfce/* $(DESTDIR)$(xfceconfdir)/xfce4/notication-deamon-xfce/ + install -m 644 common/xfce4/panel/* $(DESTDIR)$(xfceconfdir)/xfce4/panel/ + install -m 644 common/xfce4/volstatus/* $(DESTDIR)$(xfceconfdir)/xfce4/volstatus/ + install -m 644 common/xfce4/*.rc $(DESTDIR)$(xfceconfdir)/xfce4 + install -m 644 common/xfce4/*.xrdb $(DESTDIR)$(xfceconfdir)/xfce4 + + -install -d $(DESTDIR)$(xfceprofdir) + -install -d $(DESTDIR)$(xfceprofdir)/Free/xfce4/mcs_settings + install -m 644 Free/xfce4/mcs_settings/*.xml $(DESTDIR)$(xfceprofdir)/Free/xfce4/mcs_settings/ + + -install -d $(DESTDIR)$(xfceprofdir)/One/xfce4/mcs_settings + install -m 644 One/xfce4/mcs_settings/*.xml $(DESTDIR)$(xfceprofdir)/One/xfce4/mcs_settings/ + + -install -d $(DESTDIR)$(xfceprofdir)/Powerpack/xfce4/mcs_settings + install -m 644 Powerpack/xfce4/mcs_settings/*.xml $(DESTDIR)$(xfceprofdir)/Powerpack/xfce4/mcs_settings/ + + -install -d $(DESTDIR)$(iconsdir)/Tango/32x32/apps + install -m 644 icons/*.png $(DESTDIR)$(iconsdir)/Tango/32x32/apps/ |