mirror of
https://github.com/horst3180/arc-theme.git
synced 2024-10-27 19:04:02 +00:00
0b2dd94b14
* Added plank theme to makefile * Add new plank installation method to the readme * Update readme for plank
43 lines
935 B
Makefile
43 lines
935 B
Makefile
if !ENABLE_TRANSPARENCY
|
|
themedir = $(datadir)/themes/Arc-solid
|
|
themedarkerdir = $(datadir)/themes/Arc-Darker-solid
|
|
themedarkdir = $(datadir)/themes/Arc-Dark-solid
|
|
else
|
|
themedir = $(datadir)/themes/Arc
|
|
themedarkerdir = $(datadir)/themes/Arc-Darker
|
|
themedarkdir = $(datadir)/themes/Arc-Dark
|
|
endif
|
|
|
|
ithemedir = $(DESTDIR)$(themedir)
|
|
ithemedarkerdir = $(DESTDIR)$(themedarkerdir)
|
|
ithemedarkdir = $(DESTDIR)$(themedarkdir)
|
|
|
|
|
|
install-exec-hook:
|
|
|
|
install-data-local:
|
|
|
|
if ENABLE_PLANK
|
|
|
|
if ENABLE_LIGHT
|
|
$(MKDIR_P) $(ithemedir)
|
|
cp -R $(srcdir)/Arc-Plank/. $(ithemedir)/plank
|
|
endif # ENABLE_LIGHT
|
|
|
|
if ENABLE_DARKER
|
|
$(MKDIR_P) $(ithemedarkerdir)
|
|
cp -R $(srcdir)/Arc-Plank/. $(ithemedarkerdir)/plank
|
|
endif # ENABLE_DARKER
|
|
|
|
if ENABLE_DARK
|
|
$(MKDIR_P) $(ithemedarkdir)
|
|
cp -R $(srcdir)/Arc-Plank/. $(ithemedarkdir)/plank
|
|
endif # ENABLE_DARK
|
|
endif # ENABLE_PLANK
|
|
|
|
|
|
uninstall-local:
|
|
|
|
|
|
EXTRA_DIST = $(srcdir)/Arc-Plank
|